From 5ee1f2b29ae57d8fe4fa9ef6af6c958b028f0ae3 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 26 Apr 2005 22:19:18 +0000 Subject: [PATCH] fix a typo --- src/common/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/connection.py b/src/common/connection.py index 9380b04bf..5c467d300 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -636,7 +636,7 @@ class Connection: prio = str(gajim.config.get_per('accounts', self.name, 'priority')) p = common.xmpp.Presence(typ = ptype, priority = prio, show = status,\ status = msg) - if signed: presence.setTag(common.xmpp.NS_SIGNED + ' x').setData( + if signed: p.setTag(common.xmpp.NS_SIGNED + ' x').setData( signed) self.connection.send(p) self.dispatch('STATUS', status)