mirror of https://github.com/django/django.git
Removed unused GeoIP2._cache attribute.
Unused since its introduction in 79e68c225b
.
This commit is contained in:
parent
31bef51d8e
commit
adcb3a7a27
|
@ -68,9 +68,7 @@ class GeoIP2:
|
|||
'GeoLite2-City.mmdb'; overrides the GEOIP_CITY setting.
|
||||
"""
|
||||
# Checking the given cache option.
|
||||
if cache in self.cache_options:
|
||||
self._cache = cache
|
||||
else:
|
||||
if cache not in self.cache_options:
|
||||
raise GeoIP2Exception('Invalid GeoIP caching option: %s' % cache)
|
||||
|
||||
# Getting the GeoIP data path.
|
||||
|
|
Loading…
Reference in New Issue