From 31a73cad5d73cca9169a1fb7e59640a8413b18a9 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sat, 17 May 2014 20:40:01 +0200 Subject: [PATCH 1/1] Proper glyphs for GenericBits. --- naja/actions.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/naja/actions.py b/naja/actions.py index d5e2b37..4dafbc6 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -135,6 +135,16 @@ class GenericBits(LocationAction): bits.toggle_bits(self.toggle_bits) bits.clear_bits(self.clear_bits) + def get_glyphs(self): + glyphs = [] + if self.set_bits: + glyphs.append(ACTION_GLYPHS.SET_BITS) + if self.clear_bits: + glyphs.append(ACTION_GLYPHS.CLEAR_BITS) + if self.toggle_bits: + glyphs.append(ACTION_GLYPHS.TOGGLE_BITS) + return tuple(glyphs) + def get_text(self, location=None): if 'message' in self.data: return super(GenericBits, self).get_text() -- 2.34.1