Skip to content

Commit

Permalink
Merge pull request #12 from aivarsV/patch-1
Browse files Browse the repository at this point in the history
Fix indentation error in middleware.py
  • Loading branch information
rednaks authored Jan 9, 2020
2 parents 8b9c068 + b7ba004 commit e49a6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_ip_geolocation/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e49a6c1

Please sign in to comment.