Commit c298d1be authored by Guillaume Seguin's avatar Guillaume Seguin

Remove unneeded space from print's

parent 557fed2c
...@@ -192,7 +192,7 @@ class printcore(): ...@@ -192,7 +192,7 @@ class printcore():
if self.recvcb: if self.recvcb:
try: self.recvcb(line) try: self.recvcb(line)
except: pass except: pass
if self.loud: print "RECV: ", line.rstrip() if self.loud: print "RECV:", line.rstrip()
return line return line
except SelectError as e: except SelectError as e:
if 'Bad file descriptor' in e.args[1]: if 'Bad file descriptor' in e.args[1]:
...@@ -522,7 +522,7 @@ class printcore(): ...@@ -522,7 +522,7 @@ class printcore():
self.sent.append(command) self.sent.append(command)
self.analyzer.Analyze(command) # run the command through the analyzer self.analyzer.Analyze(command) # run the command through the analyzer
if self.loud: if self.loud:
print "SENT: ", command print "SENT:", command
if self.sendcb: if self.sendcb:
try: self.sendcb(command) try: self.sendcb(command)
except: pass except: pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment