diff options
| author | José Moreira <zemanel@zemanel.eu> | 2014-01-20 16:33:11 +0000 |
|---|---|---|
| committer | José Moreira <zemanel@zemanel.eu> | 2014-01-20 16:33:11 +0000 |
| commit | 8649833cf816069204ef806c42c4551c6ebc5d10 (patch) | |
| tree | a47321d3777e1b5590ac671c234abb65761a48ba | |
| parent | ee25ea0daf7a0d1570052e5c121ed68cde9a97db (diff) | |
fixed typo on docstring
| -rw-r--r-- | django/core/files/storage.py | 2 |
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') |
