diff --git a/django_ip_geolocation/middleware.py b/django_ip_geolocation/middleware.py index e390c62..92b9bc2 100644 --- a/django_ip_geolocation/middleware.py +++ b/django_ip_geolocation/middleware.py @@ -31,7 +31,7 @@ def process_response(self, request, response): except Exception: logging.error("Couldn't geolocate ip", exc_info=True) - return response + return response def _get_geolocation(self, request): ip = get_remote_ip_from_request(request)