summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-01-21 04:46:14 -0800
committerTim Graham <timograham@gmail.com>2014-01-21 04:46:14 -0800
commit8606785faad2ce637d5265726f3b4adba5bd1286 (patch)
tree5fc0ddcd088195cf456119cfbaf5613310aa6539
parent494b408041c59e9079e624040d48412559f241ae (diff)
parent8649833cf816069204ef806c42c4551c6ebc5d10 (diff)
Merge pull request #2186 from zemanel/master
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')