forked from platformio/platformio-core
Make "print" compatible between Py2 & Py3
This commit is contained in:
@@ -100,7 +100,7 @@ class AsyncPipe(Thread):
|
||||
if self.outcallback:
|
||||
self.outcallback(line)
|
||||
else:
|
||||
print line
|
||||
print(line)
|
||||
self._pipe_reader.close()
|
||||
|
||||
def close(self):
|
||||
|
Reference in New Issue
Block a user