diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-08-17 19:28:00 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-08-17 19:28:00 +0200 |
commit | 84277d2ea066c35361a2778081677d4a9ba43833 (patch) | |
tree | d91aa0e14ce3950d8732d4d527e279a7017b8a1b | |
parent | 69d7012d2e37239cc43ee920914b54d8933535dc (diff) | |
download | fuzzycat-84277d2ea066c35361a2778081677d4a9ba43833.tar.gz fuzzycat-84277d2ea066c35361a2778081677d4a9ba43833.zip |
serial name: no default path
-rw-r--r-- | fuzzycat/serials.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/serials.py b/fuzzycat/serials.py index 5222084..2f1782d 100644 --- a/fuzzycat/serials.py +++ b/fuzzycat/serials.py @@ -18,7 +18,7 @@ class SerialsDatabase: {'1857-9272', '2232-299X', '2232-3007', '2232-3015'} """ - def __init__(self, path='names'): + def __init__(self, path=None): """ Note that shelve appends "db" to the name automatically. TODO: make this auto-download into a cache directory. |