diff options
| author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-02-12 16:05:10 +0100 | 
|---|---|---|
| committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-02-12 16:05:10 +0100 | 
| commit | fcf8712f177dfc7328f3a9ae12720a00ce9f3a49 (patch) | |
| tree | 8512d05620c55c1d0aa4c38f71785c4532abe6c9 | |
| parent | 66ecdc3c2042aa61b133316bc2ebe52dab70255a (diff) | |
Flake8 fix
| -rw-r--r-- | lesana/command.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lesana/command.py b/lesana/command.py index 9c53c9b..61393e9 100644 --- a/lesana/command.py +++ b/lesana/command.py @@ -18,7 +18,8 @@ def edit_file_in_external_editor(filepath):          except FileNotFoundError as e:              if editor in str(e):                  logging.info( -                    'Could not open file {} with $EDITOR (currently {})'.format( +                    'Could not open file {} with $EDITOR (currently {})' +                    .format(                          filepath, editor                      )                  ) | 
