Ticket #533: statushistory_parse.patch
| File statushistory_parse.patch, 0.7 kB (added by FMulder, 9 months ago) |
|---|
-
StatusHistory.py
old new 23 23 import pango 24 24 25 25 from time import * 26 from emesenelib.common import unescape 26 27 27 28 28 29 class MainClass( Plugin.Plugin ): … … 121 122 def addEntry(self, status, email = None): 122 123 '''add a new entry to the liststore''' 123 124 if email != None: 124 nick = self.controller.msn.contactManager.getContactNick(email) 125 nick = unescape(self.controller.unifiedParser.getParser( 126 self.controller.msn.contactManager.getContactNick(email)).get()) 125 127 else: 126 128 nick = self.controller.msn.user 127 129
