allTags() ignores card tag

This commit is contained in:
Damien Elmes 2008-11-30 05:40:21 +09:00
parent 0e7ebae9b8
commit a9a4f08e24

View file

@ -157,8 +157,7 @@ class Card(object):
def allTags(self): def allTags(self):
"Non-canonified string of all tags." "Non-canonified string of all tags."
return (self.tags + "," + return (self.fact.tags + "," +
self.fact.tags + "," +
self.fact.model.tags) self.fact.model.tags)
def hasTag(self, tag): def hasTag(self, tag):