Skip to content

Commit

Permalink
py3 print compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mjirik committed Dec 26, 2018
1 parent a5011ab commit 6c9a617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teigen/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def _progressbar_update(self, obj, level, *args, **kwargs):
self.progressBar.setValue(int(10000 * level))
if "statusbar_text" in kwargs:
# add this in gui
print "statusbar_text " + kwargs["statusbar_text"]
print("statusbar_text " + kwargs["statusbar_text"])
## end of pyqtgraph tree

def run_batch(self):
Expand Down

0 comments on commit 6c9a617

Please sign in to comment.