Skip to content

Commit 54ca6a1

Browse files
committed
The prompt should not depend on paste mode.
1 parent b4c1f05 commit 54ca6a1

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
@@ -1353,7 +1353,7 @@ def repl(self):
13531353
if inp:
13541354
self.rl_hist.append(inp + '\n')
13551355
stdout_position = len(self.stdout_hist)
1356-
more = self.push(inp) or self.paste_mode
1356+
more = self.push(inp)
13571357
if not more:
13581358
self.prev_block_finished = stdout_position
13591359
self.s = ''

0 commit comments

Comments
 (0)