Skip to content

Commit

Permalink
Merge pull request #41 from bfroehle/2and3
Browse files Browse the repository at this point in the history
Fix one small Python 3 bug... (missing a definition for raw_input).
  • Loading branch information
inducer committed Jul 19, 2012
2 parents f15ff23 + d04d29e commit 61137e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pudb/debugger.py
Expand Up @@ -10,7 +10,7 @@
CONFIG = load_config()
save_config(CONFIG)

from pudb.py3compat import PY3
from pudb.py3compat import PY3, raw_input
if PY3:
_next = "__next__"
else:
Expand Down

0 comments on commit 61137e6

Please sign in to comment.