aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-04-10 14:57:23 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-04-10 14:57:23 -0500
commit111885814086313ee1206def7eb63149467a9149 (patch)
tree7004e72afa7eb6068092da2a72768a38449e1a66
parent779f2b9411c4e9be108546be2a03e96474d3eccd (diff)
downloadmediagoblin-111885814086313ee1206def7eb63149467a9149.tar.lz
mediagoblin-111885814086313ee1206def7eb63149467a9149.tar.xz
mediagoblin-111885814086313ee1206def7eb63149467a9149.zip
I don't think we need _create_dirs_for_filepath.
-rw-r--r--mediagoblin/storage.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/mediagoblin/storage.py b/mediagoblin/storage.py
index 84ceb641..a1a3b3a4 100644
--- a/mediagoblin/storage.py
+++ b/mediagoblin/storage.py
@@ -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))