[Django]-Intermittent ImportError with Django package

-1👍

I think here’s your answer, looks like since django 1.4 it’s in different package : django.contrib.gis.geoip and django.contrib.gis.utils shortcut has been removed in django 1.6, so I would recommend to investigate django version on test server. At first try to change import to django.contrib.gis.geoip if using django>=1.4, and you won’t have to investigate nothing.

Leave a comment