Skip to content

Commit 2d28150

Browse files
fix bug with sending session to external editor
1 parent 47a8519 commit 2d28150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def send_current_block_to_external_editor(self, filename=None):
789789

790790
def send_session_to_external_editor(self, filename=None):
791791
for_editor = (u"### current bpython session - file will be "
792-
u"reevaluated, ### lines will not be run\n'")
792+
u"reevaluated, ### lines will not be run\n")
793793
for_editor += u'\n'.join(line[len(self.ps1):]
794794
if line.startswith(self.ps1) else
795795
line[len(self.ps2):]

0 commit comments

Comments
 (0)