Skip to content

Commit

Permalink
Fix python3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Bastida committed Oct 10, 2015
1 parent 96f3170 commit aed7988
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awslogs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def consumer():
'green'
)
)
print ' '.join(output)
print(' '.join(output))

def generator():
"""Push events into queue trying to deduplicate them using a lru queue.
Expand Down Expand Up @@ -160,7 +160,7 @@ def generator():
time.sleep(.1)
except (KeyboardInterrupt, SystemExit):
exit.set()
print 'You pressed Ctrl+C!\n'
print('You pressed Ctrl+C!\n')
g.join()
c.join()

Expand Down

0 comments on commit aed7988

Please sign in to comment.