We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b175d commit 8909385Copy full SHA for 8909385
labscript_devices/SpinnakerCamera/blacs_workers.py
@@ -234,8 +234,8 @@ def stop_acquisition(self):
234
num_frames=self.get_attribute('StreamTotalBufferCount', stream_map=True)
235
failed_frames=self.get_attribute('StreamFailedBufferCount', stream_map=True)
236
underrun_frames=self.get_attribute('StreamBufferUnderrunCount', stream_map=True)
237
- print('Stream info: %d frames acquired, %d failed, %d underrun' %
238
- (num_frames, failed_frames, underrun_frames))
+ print('Stream info: %s frames acquired, %s failed, %s underrun' %
+ (str(num_frames), str(failed_frames), str(underrun_frames)))
239
240
def abort_acquisition(self):
241
print('Stopping acquisition...')
0 commit comments