mirror of
https://github.com/Hopiu/django.git
synced 2026-03-29 20:30:24 +00:00
Fixed regression introduced by 20472aa827.
The wrong exception was being caught when detecting the presence of GeoIP. Thanks to ramiro for the report.
This commit is contained in:
parent
a971d19bab
commit
24f9967619
1 changed files with 1 additions and 1 deletions
|
|
@ -14,5 +14,5 @@
|
|||
try:
|
||||
from .base import GeoIP, GeoIPException
|
||||
HAS_GEOIP = True
|
||||
except ImportError:
|
||||
except RuntimeError: # libgeoip.py raises a RuntimeError if no GeoIP library is found
|
||||
HAS_GEOIP = False
|
||||
|
|
|
|||
Loading…
Reference in a new issue