Skip to content

Commit

Permalink
Fix AssertionError; signal receivers must have **kwargs
Browse files Browse the repository at this point in the history
This was causing all the tests to fail under Django 1.4.6.
  • Loading branch information
willkg committed Aug 16, 2013
1 parent 3ed1a09 commit bbee58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion badger_example/badges.py
Expand Up @@ -64,7 +64,7 @@ def on_guestbook_post(sender, **kwargs):
.update_percent(total_word_count, 250))


def on_badge_award(sender, signal, award):
def on_badge_award(sender, signal, award, **kwargs):
pass


Expand Down

0 comments on commit bbee58e

Please sign in to comment.