From 2af3116b9d86c773711ef274a4aabc5ca339c7ef Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 13 Sep 2005 10:52:51 +0000 Subject: [PATCH] fix TB --- src/common/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/connection.py b/src/common/connection.py index ad710a92e..8293531f8 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -899,7 +899,7 @@ class Connection: if mime_type is not None: file_props['mime-type'] = mime_type - our_jid = get_jid_from_account(self.name) + our_jid = gajim.get_jid_from_account(self.name) resource = self.server_resource file_props['receiver'] = our_jid + '/' + resource file_props['sender'] = iq_obj.getFrom() @@ -956,7 +956,7 @@ class Connection: self.to_be_sent.append(iq) def send_file_request(self, file_props): - our_jid = get_jid_from_account(self.name) + our_jid = gajim.get_jid_from_account(self.name) resource = self.server_resource frm = our_jid + '/' + resource file_props['sender'] = frm