Skip to content

Commit

Permalink
Syntax error fixed - closes #104
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeioth committed Nov 24, 2014
1 parent c060bde commit 23e0ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axes/management/commands/axes_list_attempts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ class Command(BaseCommand):

def handle(self, *args, **kwargs):
for at in AccessAttempt.objects.all():
print "%s %s %s" % (at.ip_address, at.username, at.failures)
print ("%s %s %s" % (at.ip_address, at.username, at.failures))

0 comments on commit 23e0ad9

Please sign in to comment.