changeset 13:a999a074d2ee

do not print to the console, only to the log dialog
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 21 Sep 2014 15:25:57 +0200
parents 3fdb5db9bedb
children 07d74b88ac8d
files RemoteViewer/Viewer.py
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/RemoteViewer/Viewer.py	Sun Sep 21 15:25:32 2014 +0200
+++ b/RemoteViewer/Viewer.py	Sun Sep 21 15:25:57 2014 +0200
@@ -14,7 +14,6 @@
         for line in iter(self.output.readline, b''):
             line = line.decode('utf-8')
             line = line.rstrip('\n')
-            print(line)
             self.viewer.append(line)
 
 class AbstractViewer(object):