freebsd-ports/net/imcom/files/patch-IMCom.py
Pav Lucistnik 500e33efb9 - Update to 1.33p1
PR:		ports/79795
Submitted by:	Martijn Lina <martijn@pacno.net> (maintainer)
2005-04-11 21:22:51 +00:00

27 lines
1.1 KiB
Python

--- IMCom.py.orig Sat Mar 26 00:34:55 2005
+++ IMCom.py Sat Mar 26 00:36:17 2005
@@ -618,7 +618,7 @@
def sendPriority(self, priority):
self.priority = priority
- tosend = "<presence type='available'>"\
+ tosend = "<presence>"\
"<show>"+self.currentStatus+"</show>"\
"<priority>"+str(priority)+"</priority>"
if(self.currentStatusReason != None or self.currentStatusReason != ""):
@@ -640,12 +640,12 @@
self.currentStatus = "online"
self.currentStatusReason = reason
if(reason == None):
- tosend = "<presence type='available'>"\
+ tosend = "<presence>"\
"<show>online</show>"\
"<priority>"+priority+"</priority>"\
"</presence>"
else:
- tosend = "<presence type='available'>"\
+ tosend = "<presence>"\
"<show>online</show><status>"+self.normalize(reason)+"</status>"\
"<priority>"+priority+"</priority>"\
"</presence>"