X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/8bbef1628f527255a64f624a5508116eeccad083..166fc13012c33563b179a2bea5e33d36b0be979c:/lib/vstorage/__init__.py diff --git a/lib/vstorage/__init__.py b/lib/vstorage/__init__.py index 8d22e10c..843bb6b7 100644 --- a/lib/vstorage/__init__.py +++ b/lib/vstorage/__init__.py @@ -354,11 +354,11 @@ class VersionedStorage(object): try: return tree_search(tip, self._title_to_file(title)) - except (IndexError, LookupError) as e: + except (IndexError, LookupError): logging.info("XML file not found, trying plain") try: return tree_search(tip, self._title_to_file(title, type='')) - except (IndexError, LookupError) as e: + except (IndexError, LookupError): raise DocumentNotFound(title) def page_history(self, title):