diff options
-rw-r--r-- | poezio/tabs/xmltab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/tabs/xmltab.py b/poezio/tabs/xmltab.py index 5c7a8da7..cd49724c 100644 --- a/poezio/tabs/xmltab.py +++ b/poezio/tabs/xmltab.py @@ -47,7 +47,7 @@ class MatchJID(object): return '%s%s%s' % (self.dest, ': ' if self.dest else '', self.jid) MATCHERS_MAPPINGS = { - MatchJID: ('JID', lambda obj: repr(obj)), + MatchJID: ('JID', repr), matcher.MatcherId: ('ID', lambda obj: obj._criteria), matcher.MatchXMLMask: ('XMLMask', lambda obj: tostring(obj._criteria)), matcher.MatchXPath: ('XPath', lambda obj: obj._criteria) |