Skip to content

Commit fb07d96

Browse files
committed
Fix SyntaxError
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent fa3ad3a commit fb07d96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ def open_in_external_editor(self, filename):
10011001
editor_args = shlex.split(prepare_for_exec(self.config.editor,
10021002
encoding))
10031003
args = editor_args + [prepare_for_exec(filename, encoding)]
1004-
return subprocess.call(args) == 0:
1004+
return subprocess.call(args) == 0
10051005

10061006
def edit_config(self):
10071007
if not (os.path.isfile(self.config.config_path)):

0 commit comments

Comments
 (0)