From 111885814086313ee1206def7eb63149467a9149 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 10 Apr 2011 14:57:23 -0500 Subject: [PATCH] I don't think we need _create_dirs_for_filepath. --- mediagoblin/storage.py | 6 ------ 1 file changed, 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))