X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=python%2Fcumulus%2Fstore%2Ffile.py;h=833a5f0e0d9888cf1c512863df2a87128b5c6e77;hp=fd6805f571a2334f44522110da677053695c0972;hb=ee98274cfd9e9383214a9792c01fdfe4f22ef677;hpb=8637c84e5657ec8aa677091a1cde4c2fe666cbfb diff --git a/python/cumulus/store/file.py b/python/cumulus/store/file.py index fd6805f..833a5f0 100644 --- a/python/cumulus/store/file.py +++ b/python/cumulus/store/file.py @@ -36,7 +36,7 @@ class Store(cumulus.store.Store): def get(self, path): try: - return open(os.path.join(self.prefix, path), 'rb') + return open(os.path.join(self.prefix, path), "rb") except IOError: raise cumulus.store.NotFoundError(path)