Skip to content

Commit 0d9d5d2

Browse files
committed
Merge bugfix from 0.12-bugfix.
2 parents d7caa1b + d69d127 commit 0d9d5d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1616,7 +1616,7 @@ def bs(s):
16161616
curses.flushinp()
16171617
raise ValueError
16181618
# literal
1619-
elif 0 <= c < 127:
1619+
elif 0 < c < 127:
16201620
c = chr(c)
16211621
self.win.addstr(c, get_colpair(self.config, 'prompt'))
16221622
o += c

0 commit comments

Comments
 (0)