Skip to content

Commit

Permalink
Merge pull request #72 from elwinh/master
Browse files Browse the repository at this point in the history
Add Python3 (color) output support
  • Loading branch information
ronaveva authored Dec 13, 2024
2 parents c540397 + a29135f commit dcd2347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contents/run-image
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ p = Popen(
while True:
line = p.stdout.readline().rstrip()
if line:
print ( line )
print ( line.decode() )
if p.poll() is not None:
break

Expand Down

0 comments on commit dcd2347

Please sign in to comment.