X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/196df56422f4c2e5b77cc7e6596b6d4326d9ba41..afdb8fd05511c5280e8ee251389cb893786eb810:/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):