Remove / disable debugging prints

This commit is contained in:
blitzmann
2014-08-17 23:40:22 -04:00
parent 8928d394c0
commit e8041470c8
4 changed files with 8 additions and 14 deletions

View File

@@ -35,9 +35,9 @@ class exportHtmlThread(threading.Thread):
def run(self):
# wait 1 second just in case a lot of modifications get made
time.sleep(1);
time.sleep(1)
if self.stopRunning:
return;
return
sMkt = service.Market.getInstance()
sFit = service.Fit.getInstance()
@@ -190,8 +190,8 @@ class exportHtmlThread(threading.Thread):
try:
FILE = open(settings.getPath(), "w")
FILE.write(HTML.encode('utf-8'));
FILE.close();
FILE.write(HTML.encode('utf-8'))
FILE.close()
except IOError:
print "Failed to write to " + settings.getPath()
pass