X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=python%2Fcumulus%2Fstore%2Ffile.py;h=6d23a588d03d527b02457f769ae6c97bad5b02f0;hp=e2da34a2ae718b445909781c39f8d2f9fa8f1249;hb=a5f66616b1ec0c38328ad5131bf1c889ccc43659;hpb=5b69b1ec0eeba473dfd2c40de41075a49a147e93 diff --git a/python/cumulus/store/file.py b/python/cumulus/store/file.py index e2da34a..6d23a58 100644 --- a/python/cumulus/store/file.py +++ b/python/cumulus/store/file.py @@ -56,6 +56,6 @@ class FileStore(cumulus.store.Store): stat = os.stat(os.path.join(self.prefix, path)) return {'size': stat.st_size} except OSError: - raise cumulus.store.NotFoundError, path + raise cumulus.store.NotFoundError(path) Store = FileStore