Commit 96c660a8 by devttys0

Fixed display-once keyword bug

parent c336b225
...@@ -180,7 +180,7 @@ class Signature(object): ...@@ -180,7 +180,7 @@ class Signature(object):
if signature in self.valid_once_already_seen: if signature in self.valid_once_already_seen:
self.display = False self.display = False
return (data, False) return (data, False)
else: elif tag.tag in data:
self.valid_once_already_seen.add(signature) self.valid_once_already_seen.add(signature)
return (data, True) return (data, True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment