Skip to content

Commit

Permalink
Merge pull request #38 from rednaks/master
Browse files Browse the repository at this point in the history
Release 1.5.1
  • Loading branch information
rednaks authored Mar 7, 2020
2 parents ef9dfa5 + 13c30d2 commit 54af0d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_ip_geolocation/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class IpGeolocationMiddleware(MiddlewareMixin):

def __init__(self, get_response=None): # noqa: D107
self._geolocation_data = None
super(IpGeolocationMiddleware).__init__(get_response)
super(IpGeolocationMiddleware, self).__init__(get_response)

def process_request(self, request):
"""Process the request."""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def readme():

setup(
name='django-ip-geolocation',
version='1.5.0',
version='1.5.1',
author='Skander Ben Mahmoud',
author_email='[email protected]',
packages=find_packages(exclude=("tests", "docs")),
Expand Down

0 comments on commit 54af0d6

Please sign in to comment.