summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Moreira <zemanel@zemanel.eu>2014-01-20 16:33:11 +0000
committerJosé Moreira <zemanel@zemanel.eu>2014-01-20 16:33:11 +0000
commit8649833cf816069204ef806c42c4551c6ebc5d10 (patch)
treea47321d3777e1b5590ac671c234abb65761a48ba
parentee25ea0daf7a0d1570052e5c121ed68cde9a97db (diff)
fixed typo on docstring
-rw-r--r--django/core/files/storage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/storage.py b/django/core/files/storage.py
index e8db352d3e..c8b4c7185d 100644
--- a/django/core/files/storage.py
+++ b/django/core/files/storage.py
@@ -97,7 +97,7 @@ class Storage(object):
def exists(self, name):
"""
- Returns True if a file referened by the given name already exists in the
+ Returns True if a file referenced by the given name already exists in the
storage system, or False if the name is available for a new file.
"""
raise NotImplementedError('subclasses of Storage must provide a exists() method')