Skip to content
Snippets Groups Projects
Commit 150387d2 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[data] Fix print statements

parent 31aa758c
Branches
Tags
2 merge requests!17Merge development branch 1.5.x,!10Py3 compatibility
......@@ -823,9 +823,9 @@ class StdoutDataSink(DataSink):
"""
if self.display_data:
print '%s(%d -> %d): %s' % (self.prefix, start_data_index, end_data_index, str(data))
print('%s(%d -> %d): %s' % (self.prefix, start_data_index, end_data_index, str(data)))
else:
print '%s(%d -> %d): <data>' % (self.prefix, start_data_index, end_data_index)
print('%s(%d -> %d): <data>' % (self.prefix, start_data_index, end_data_index))
def isConnected(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment