Update backend code and cumulus-sync for the new backup layout.
[cumulus.git] / python / cumulus / store / file.py
index 8304401..e2da34a 100644 (file)
@@ -29,9 +29,6 @@ class FileStore(cumulus.store.Store):
             self.path = url
         self.prefix = self.path.rstrip("/")
 
-    def _get_path(self, type, name):
-        return os.path.join(self.prefix, type, name)
-
     def list(self, subdir):
         try:
             return os.listdir(os.path.join(self.prefix, subdir))