Skip to content
This repository has been archived by the owner. It is now read-only.

Commit 5961509

Browse files
committed
Fix #8
1 parent 3c30c85 commit 5961509

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nat/zotero_wrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ def initialize(self):
3737

3838
def load_cache(self):
3939
"""Load the cached Zotero data."""
40-
print("Loading cached Zotero data...")
4140
with open(self.cache_path, "rb") as f:
41+
print("Loading cached Zotero data...")
4242
cache = pickle.load(f)
4343
self._references = cache[self.CACHE_REFERENCE_LIST]
4444
self.reference_types = cache[self.CACHE_REFERENCE_TYPES]
4545
self.reference_templates = cache[self.CACHE_REFERENCE_TEMPLATES]
46-
print("Cached Zotero data loaded.")
46+
print("Cached Zotero data loaded.")
4747

4848
def load_distant(self):
4949
"""Load the distant Zotero data."""

0 commit comments

Comments
 (0)