Skip to content

Commit 3e1f588

Browse files
committed
place return outside of ctx manager
1 parent a9022ff commit 3e1f588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3158,7 +3158,7 @@ def run_pdb_script(self, script, commands,
31583158
if script_args is None:
31593159
script_args = []
31603160
stdout, stderr = self._run_pdb([filename] + script_args, commands, expected_returncode, extra_env)
3161-
return stdout, stderr
3161+
return stdout, stderr
31623162

31633163
def run_pdb_module(self, script, commands):
31643164
"""Runs the script code as part of a module"""

0 commit comments

Comments
 (0)