Skip to content

Commit 1143894

Browse files
authored
gh-119909: Fix NameError in asyncio REPL (#121341)
1 parent 53e1202 commit 1143894

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def run(self):
116116
if err := check():
117117
raise RuntimeError(err)
118118
except Exception as e:
119-
console.interact(banner="", exitmsg=exit_message)
119+
console.interact(banner="", exitmsg="")
120120
else:
121121
try:
122122
run_multiline_interactive_console(console=console)

0 commit comments

Comments
 (0)