From 2d1a60739ecfb64c16e35940b7cee1eb018eb448 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 10 Apr 2011 16:44:47 -0500 Subject: [PATCH] get_unique_filepath not get_unique_filename! --- mediagoblin/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediagoblin/storage.py b/mediagoblin/storage.py index 87435ff2..ad8f8829 100644 --- a/mediagoblin/storage.py +++ b/mediagoblin/storage.py @@ -112,7 +112,7 @@ class StorageInterface(object): # Subclasses should override this method. self.__raise_not_implemented() - def get_unique_filename(self, filepath): + def get_unique_filepath(self, filepath): """ If a filename at filepath already exists, generate a new name.