Skip to content

Commit

Permalink
fixes travis
Browse files Browse the repository at this point in the history
  • Loading branch information
agusmakmun committed Feb 18, 2017
1 parent 57f7f07 commit c71ea0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin_honeypot/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def track_ipaddres(self, ip):
return None, if `ALLOW_TRACK_ADDRESS = False` or invalid ipaddress.
related issue: https://github.com/dmpayton/django-admin-honeypot/issues/41
"""
if ALLOW_TRACK_ADDRESS == False:
if ALLOW_TRACK_ADDRESS is False:
return None

try:
Expand Down

0 comments on commit c71ea0f

Please sign in to comment.