Skip to content

Commit

Permalink
Fix typo in fs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
libremente authored and lnielsen committed May 26, 2020
1 parent add0bbe commit 25aef34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invenio_logging/fs.py
Expand Up @@ -59,7 +59,7 @@ def install_handler(self, app):
basedir = dirname(app.config['LOGGING_FS_LOGFILE'])
if not exists(basedir):
raise ValueError(
'Log directory {0} does not exists.'.format(basedir))
'Log directory {0} does not exist.'.format(basedir))

handler = RotatingFileHandler(
app.config['LOGGING_FS_LOGFILE'],
Expand Down

0 comments on commit 25aef34

Please sign in to comment.