diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-29 11:15:50 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-29 11:15:50 -0700 |
| commit | 985ad99a7110e44ade26370e73ac9fdcae9628b8 (patch) | |
| tree | 2e9736d39d17aa3ac68d884f10525d65459aa7e1 | |
| parent | f12b68af71efa0b061710c83364f231734d07e55 (diff) | |
Fixed a flake8 warning
| -rw-r--r-- | django/contrib/gis/db/backends/postgis/introspection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/db/backends/postgis/introspection.py b/django/contrib/gis/db/backends/postgis/introspection.py index ad8d1db999..af46ad56fc 100644 --- a/django/contrib/gis/db/backends/postgis/introspection.py +++ b/django/contrib/gis/db/backends/postgis/introspection.py @@ -30,7 +30,7 @@ class PostGISIntrospection(DatabaseIntrospection): # The value for the geography type is actually a tuple # to pass in the `geography=True` keyword to the field # definition. - field_types.append(('geography', ('GeometryField', {'geography' : True}))) + field_types.append(('geography', ('GeometryField', {'geography': True}))) postgis_types = {} # The OID integers associated with the geometry type may |
