I don't think we need _create_dirs_for_filepath.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 10 Apr 2011 19:57:23 +0000 (14:57 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 10 Apr 2011 19:57:23 +0000 (14:57 -0500)
mediagoblin/storage.py

index 84ceb641d950982e65e86092085b1d2ba8442b16..a1a3b3a438bb4a94f7807613292570c2c4eb845c 100644 (file)
@@ -144,12 +144,6 @@ class BasicFileStorage(StorageInterface):
         return os.path.join(
             self.base_dir, *clean_listy_filepath(filepath))
         
-    def _create_dirs_for_filepath(self, filepath):
-        """
-        Create any necessary directories for filepath
-        """
-        pass
-
     def file_exists(self, filepath):
         return os.path.exists(self._resolve_filepath(filepath))