fixed TB when file_props['sender'] is type str

This commit is contained in:
Dimitur Kirov 2005-08-03 15:15:55 +00:00
parent a4b0226912
commit 26544535a1
1 changed files with 1 additions and 1 deletions

View File

@ -730,7 +730,7 @@ class Interface:
msg_type = 'file-stopped'
event_type = _('File Transfer Stopped')
instance = dialogs.PopupNotificationWindow(self, event_type,
file_props['sender'].getStripped(), account, msg_type, file_props)
str(file_props['sender']), account, msg_type, file_props)
self.roster.popup_notification_windows.append(instance)
def read_sleepy(self):