From 8649833cf816069204ef806c42c4551c6ebc5d10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=CC=81=20Moreira?= Date: Mon, 20 Jan 2014 16:33:11 +0000 Subject: [PATCH] fixed typo on docstring --- django/core/files/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')