summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/models/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/__init__.py b/django/db/models/__init__.py
index 47057e306f..13832f95a3 100644
--- a/django/db/models/__init__.py
+++ b/django/db/models/__init__.py
@@ -51,7 +51,7 @@ class LazyDate(object):
def __getattr__(self, attr):
if attr == 'delta':
- # To fix ticket #3377. Note that normal access to LazyDate.delta
+ # To fix ticket #3377. Note that normal accesses to LazyDate.delta
# (after construction) will still work, because they don't go
# through __getattr__). This is mainly needed for unpickling.
raise AttributeError