diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-04-10 14:57:23 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-04-10 14:57:23 -0500 |
commit | 111885814086313ee1206def7eb63149467a9149 (patch) | |
tree | 7004e72afa7eb6068092da2a72768a38449e1a66 /mediagoblin | |
parent | 779f2b9411c4e9be108546be2a03e96474d3eccd (diff) | |
download | mediagoblin-111885814086313ee1206def7eb63149467a9149.tar.lz mediagoblin-111885814086313ee1206def7eb63149467a9149.tar.xz mediagoblin-111885814086313ee1206def7eb63149467a9149.zip |
I don't think we need _create_dirs_for_filepath.
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/storage.py | 6 |
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)) |