summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/gis/geoip2/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/django/contrib/gis/geoip2/__init__.py b/django/contrib/gis/geoip2/__init__.py
index b76dfa6ef8..2d7d7a7e92 100644
--- a/django/contrib/gis/geoip2/__init__.py
+++ b/django/contrib/gis/geoip2/__init__.py
@@ -14,8 +14,10 @@ directory corresponding to settings.GEOIP_PATH.
__all__ = ['HAS_GEOIP2']
try:
+ import geoip2 # NOQA
+except ImportError:
+ HAS_GEOIP2 = False
+else:
from .base import GeoIP2, GeoIP2Exception
HAS_GEOIP2 = True
__all__ += ['GeoIP2', 'GeoIP2Exception']
-except ImportError:
- HAS_GEOIP2 = False