Skip to content

Commit

Permalink
MAINT: Add missing paren around print statement
Browse files Browse the repository at this point in the history
Stray verbose print statement in parsers.pyx was bare without any parentheses.
  • Loading branch information
gfyoung committed Jul 27, 2017
1 parent 3ab56bd commit c6e5bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/_libs/parsers.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ cdef class TextReader:
cdef _end_clock(self, what):
if self.verbose:
elapsed = time.time() - self.clocks.pop(-1)
print '%s took: %.2f ms' % (what, elapsed * 1000)
print('%s took: %.2f ms' % (what, elapsed * 1000))

def set_noconvert(self, i):
self.noconvert.add(i)
Expand Down

0 comments on commit c6e5bf6

Please sign in to comment.