From f5f7c75d459590c0b22a8c7ec7096c78788a4db8 Mon Sep 17 00:00:00 2001 From: Giovanni Gherdovich Date: Fri, 8 Oct 2010 10:13:55 +0200 Subject: [PATCH 1/1] reverted last commit, which was just few print statement. Looks like sface is keeping the status from one exec to the other... what the hell? --- sface/sfiprocess.py | 2 -- sface/xmlrpcwindow.py | 1 - 2 files changed, 3 deletions(-) diff --git a/sface/sfiprocess.py b/sface/sfiprocess.py index 1d88155..1e93b29 100644 --- a/sface/sfiprocess.py +++ b/sface/sfiprocess.py @@ -37,7 +37,6 @@ class SfiProcess(QObject): def __init_command(self, args): self.args = QStringList() - print "DEBUG FLAG:", config.debug if config.debug: # this shows xmlrpc conversation, see sfi.py docs. self.args << QString('-D') @@ -58,7 +57,6 @@ class SfiProcess(QObject): # It's cool to have this method wo we print the stdOut live, # but we must be carefull with self.output, used by XmlrpcTracker too. tmpOut = self.process.readAllStandardOutput() - print "STDOUT READY" if config.debug: print tmpOut self.output += tmpOut diff --git a/sface/xmlrpcwindow.py b/sface/xmlrpcwindow.py index 86c47c2..483d443 100644 --- a/sface/xmlrpcwindow.py +++ b/sface/xmlrpcwindow.py @@ -7,7 +7,6 @@ class XmlrpcTracker(): self.xmlrpcWindow = XmlrpcWindow() def getAndPrint(self, rawOutput): - print "RAW OUTPUT:\n" + rawOutput + "\nEND OF RAW OUT" self.store(rawOutput) self.extractXml() self.xmlrpcWindow.setData(self.xml) -- 2.43.0