Skip to content

Commit

Permalink
Remove stray "print()" call
Browse files Browse the repository at this point in the history
Probably leftover from debugging. The affected code path has a low probability
of being used, so it has been unadverted until now.
  • Loading branch information
aperezdc committed Nov 27, 2015
1 parent b498ce6 commit 0a3391f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion hipack.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,6 @@ def parse_keyval_items(self, eos):
if self.look == _COMMA:
self.nextchar()
elif self.look != eos and not _is_hipack_whitespace(self.look):
print(self.look)
break
self.skip_whitespace()

Expand Down

0 comments on commit 0a3391f

Please sign in to comment.