diff --git a/askbot/models/badges.py b/askbot/models/badges.py index f63fb8aa..0c8a4758 100644 --- a/askbot/models/badges.py +++ b/askbot/models/badges.py @@ -888,13 +888,13 @@ BADGES = { #most likely - from manipulator functions that are added to the User objects EVENTS_TO_BADGES = { 'accept_best_answer': (Guru,), - 'delete_post': (,), + 'delete_post': (), 'downvote': (Critic, CivicDuty),#no regard for question or answer for now 'edit_answer': (Editor, AssociateEditor), 'edit_question': (Editor, AssociateEditor), - 'flag_post': (,), + 'flag_post': (), 'post_answer': (Necromancer,), - 'post_comment': (,), + 'post_comment': (), 'retag_question': (Organizer,), 'select_favorite_question': (FavoriteQuestion, ), 'site_visit': (),