Opened 16 years ago

Closed 16 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)

geoip.py.diff (495 bytes ) - added by jos3ph 16 years ago.

Download all attachments as: .zip

Change History (4)

by jos3ph, 16 years ago

Attachment: geoip.py.diff added

comment:1 by jos3ph, 16 years ago

Summary: typo in django/contrib/gis/utils/geoip.py which affects darwin (Mac OS X) systemsgis: typo in django/contrib/gis/utils/geoip.py which affects darwin (Mac OS X) systems

comment:2 by jbronn, 16 years ago

Keywords: gis geoip added
Owner: changed from nobody to jbronn
Triage Stage: UnreviewedAccepted

comment:3 by jbronn, 16 years ago

Resolution: fixed
Status: newclosed

(In [6918]) gis: Fixed #6196 in GeoIP refactor. Added unit tests, improved path setup, and made mostly compatible w/existing MaxMind Python API.

Note: See TracTickets for help on using tickets.
Back to Top