Opened 17 years ago
Closed 17 years ago
#6196 closed (fixed)
gis: typo in django/contrib/gis/utils/geoip.py which affects darwin (Mac OS X) systems
Reported by: | jos3ph | Owned by: | jbronn |
---|---|---|---|
Component: | GIS | Version: | gis |
Severity: | Keywords: | gis geoip | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Variable platform
is mistyped when checking for Darwin platform.
elif platofm == 'Darwin'
should be
elif platform == 'Darwin'
Attachments (1)
Change History (4)
by , 17 years ago
Attachment: | geoip.py.diff added |
---|
comment:1 by , 17 years ago
Summary: | typo in django/contrib/gis/utils/geoip.py which affects darwin (Mac OS X) systems → gis: typo in django/contrib/gis/utils/geoip.py which affects darwin (Mac OS X) systems |
---|
comment:2 by , 17 years ago
Keywords: | gis geoip added |
---|---|
Owner: | changed from | to
Triage Stage: | Unreviewed → Accepted |
comment:3 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [6918]) gis: Fixed #6196 in GeoIP refactor. Added unit tests, improved path setup, and made mostly compatible w/existing MaxMind Python API.