diff options
| author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2020-09-13 13:27:49 +0200 | 
|---|---|---|
| committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2020-09-13 13:27:49 +0200 | 
| commit | da6ee8b6982fa5e89c6c808cfe86e75707eca887 (patch) | |
| tree | 91f0b8a15d6c68657d9a09276c8ae9c8c4b6d785 | |
| parent | e79d17f33f0557870b2c2e16e6f2a3dd7b549a55 (diff) | |
Fix .format string
| -rw-r--r-- | lesana/collection.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lesana/collection.py b/lesana/collection.py index 25b86e5..ca66fcf 100644 --- a/lesana/collection.py +++ b/lesana/collection.py @@ -274,7 +274,7 @@ class Collection(object):                  fnames = os.listdir(self.itemdir)              except FileNotFoundError:                  logging.warning( -                    "No such file or directory: %s, not updating cache".format( +                    "No such file or directory: {}, not updating cache".format(                          self.itemdir)                      )                  return 0 | 
