]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/default_badges/badges.py
OSQA-606, we convert the node score and the NECROMANCER_UP_VOTES setting to Integer...
[osqa.git] / forum_modules / default_badges / badges.py
index f0a893078912e6f61106b1d140e769785c582363..893d32a322457732e8acbc299d930383ef9762a1 100644 (file)
@@ -308,7 +308,7 @@ class Necromancer(AbstractBadge):
     def award_to(self, action):
         if (action.node.node_type == "answer") and (
         action.node.added_at >= (action.node.question.added_at + timedelta(days=int(settings.NECROMANCER_DIF_DAYS)))
-        ) and (action.node.score == settings.NECROMANCER_UP_VOTES):
+        ) and (int(action.node.score) == int(settings.NECROMANCER_UP_VOTES)):
             return action.node.author
 
 class Taxonomist(AbstractBadge):