Skip to content

Commit

Permalink
pythongh-119909: Fix NameError in asyncio REPL (python#121341)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eclips4 authored Jul 6, 2024
1 parent 53e1202 commit 1143894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/asyncio/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def run(self):
if err := check():
raise RuntimeError(err)
except Exception as e:
console.interact(banner="", exitmsg=exit_message)
console.interact(banner="", exitmsg="")
else:
try:
run_multiline_interactive_console(console=console)
Expand Down

0 comments on commit 1143894

Please sign in to comment.