fix a typo
This commit is contained in:
parent
8ed41802bf
commit
5ee1f2b29a
|
@ -636,7 +636,7 @@ class Connection:
|
||||||
prio = str(gajim.config.get_per('accounts', self.name, 'priority'))
|
prio = str(gajim.config.get_per('accounts', self.name, 'priority'))
|
||||||
p = common.xmpp.Presence(typ = ptype, priority = prio, show = status,\
|
p = common.xmpp.Presence(typ = ptype, priority = prio, show = status,\
|
||||||
status = msg)
|
status = msg)
|
||||||
if signed: presence.setTag(common.xmpp.NS_SIGNED + ' x').setData(
|
if signed: p.setTag(common.xmpp.NS_SIGNED + ' x').setData(
|
||||||
signed)
|
signed)
|
||||||
self.connection.send(p)
|
self.connection.send(p)
|
||||||
self.dispatch('STATUS', status)
|
self.dispatch('STATUS', status)
|
||||||
|
|
Loading…
Reference in New Issue