aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-04-10 16:44:47 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-04-10 16:44:47 -0500
commit2d1a60739ecfb64c16e35940b7cee1eb018eb448 (patch)
tree8df324b3e3f21d72bd04d3ce18e3961bb4264d95
parent92fb87ae8d3260c3a5da45aa7b0c75e401e81791 (diff)
downloadmediagoblin-2d1a60739ecfb64c16e35940b7cee1eb018eb448.tar.lz
mediagoblin-2d1a60739ecfb64c16e35940b7cee1eb018eb448.tar.xz
mediagoblin-2d1a60739ecfb64c16e35940b7cee1eb018eb448.zip
get_unique_filepath not get_unique_filename!
-rw-r--r--mediagoblin/storage.py2
1 files changed, 1 insertions, 1 deletions
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.