fix flake8 notice

Signed-off-by: Stephen L. <lrq3000@gmail.com>
This commit is contained in:
Stephen L 2015-10-15 16:49:19 +02:00
parent 576d3a7bcb
commit 6313cc9d00
1 changed files with 2 additions and 2 deletions

View File

@ -25,5 +25,5 @@ stmts = (
'from progressbar.progressbar import ProgressBar;'
' [i for i in ProgressBar()(xrange(int(1e8)))]')
for s in stmts:
print s
print timeit(stmt=s, number=1), 'seconds'
print(s)
print(timeit(stmt=s, number=1), 'seconds')