Skip to content

Commit a59f338

Browse files
committed
fix quoted-insert
1 parent b50c026 commit a59f338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrepl/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def do(self):
370370
class qIHelp(Command):
371371
def do(self):
372372
r = self.reader
373-
r.insert((self.event + r.console.getpending().data) * r.get_arg())
373+
r.insert((bytes(self.event) + r.console.getpending().data) * r.get_arg())
374374
r.pop_input_trans()
375375

376376
from pyrepl import input

0 commit comments

Comments
 (0)