We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd1c25 commit 68df142Copy full SHA for 68df142
bpython/curtsiesfrontend/coderunner.py
@@ -183,7 +183,7 @@ def _blocking_run_code(self):
183
try:
184
unfinished = self.interp.runsource(self.source)
185
except SystemExit as e:
186
- return SystemExitRequest(e.args)
+ return SystemExitRequest(*e.args)
187
return Unfinished() if unfinished else Done()
188
189
def request_from_main_context(self, force_refresh=False):
0 commit comments