diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-26 10:18:45 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-26 10:18:45 -0700 |
commit | 2bcb8bfc8de5cd57ebb64b326cd7609aa0d8c1c7 (patch) | |
tree | 6c0dc4b5f0d4dbcae6c181efc2b346799ac5caf3 /django/db/models/fields/files.py | |
parent | 8b5b199e20ad2d8d3e91873ce0cd5d3035e05ece (diff) | |
download | django-2bcb8bfc8de5cd57ebb64b326cd7609aa0d8c1c7.tar.gz |
Fix many many typos in comments throughout the codebase
Diffstat (limited to 'django/db/models/fields/files.py')
-rw-r--r-- | django/db/models/fields/files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/fields/files.py b/django/db/models/fields/files.py index 6cb49db24a..518008b28d 100644 --- a/django/db/models/fields/files.py +++ b/django/db/models/fields/files.py @@ -429,7 +429,7 @@ class ImageField(FileField): Dimensions can be forced to update with force=True, which is how ImageFileDescriptor.__set__ calls this method. """ - # Nothing to update if the field doesn't have have dimension fields. + # Nothing to update if the field doesn't have dimension fields. has_dimension_fields = self.width_field or self.height_field if not has_dimension_fields: return |