I don't think we need _create_dirs_for_filepath.

This commit is contained in:
Christopher Allan Webber 2011-04-10 14:57:23 -05:00
parent 779f2b9411
commit 1118858140

View 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))