Skip to content

Commit 6e69e89

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bpython/repl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,8 +1030,8 @@ def edit_config(self):
10301030
if self.open_in_external_editor(self.config.config_path):
10311031
self.interact.notify(_('bpython config file edited. Restart '
10321032
'bpython for changes to take effect.'))
1033-
except OSError as e:
1034-
self.interact.notify(_('Error editing config file: %s') % e)
1033+
except OSError as e:
1034+
self.interact.notify(_('Error editing config file: %s') % e)
10351035

10361036

10371037
def next_indentation(line, tab_length):

0 commit comments

Comments
 (0)