Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix generated source code support in Py3
  • Loading branch information
inducer committed Jul 12, 2015
1 parent 46337e9 commit 6d47f8c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pudb/debugger.py
Expand Up @@ -600,8 +600,6 @@ def get_lines(self, debugger_ui):
for i, l in enumerate(lines):
if hasattr(l, "decode"):
l = l.decode(source_enc)
else:
l = l.decode(source_enc)

if i+1 < len(lines):
l += "\n"
Expand Down

0 comments on commit 6d47f8c

Please sign in to comment.