X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/196df56422f4c2e5b77cc7e6596b6d4326d9ba41..a11cf903969595b065b46cc991d70c43035af76d:/lib/vstorage.py?ds=inline diff --git a/lib/vstorage.py b/lib/vstorage.py index 01ee7b88..b23234ad 100644 --- a/lib/vstorage.py +++ b/lib/vstorage.py @@ -144,6 +144,7 @@ class VersionedStorage(object): return urlunquote(name) def __contains__(self, title): + print "Checking ", title return urlquote(title) in self.repo.dirstate def __iter__(self): @@ -270,6 +271,8 @@ class VersionedStorage(object): try: return open(self._file_path(title), "rb") except IOError: + import traceback + print traceback.print_exc() raise DocumentNotFound() def page_file_meta(self, title):