Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/xmpp/features_nb.py')
-rw-r--r--src/common/xmpp/features_nb.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/xmpp/features_nb.py b/src/common/xmpp/features_nb.py
index 427ca9724..b713e38b2 100644
--- a/src/common/xmpp/features_nb.py
+++ b/src/common/xmpp/features_nb.py
@@ -41,7 +41,7 @@ def getRegInfo(disp, host, info={}, sync=True):
'''
Gets registration form from remote host. Info dict can be prefilled
:param disp: plugged dispatcher instance
- :param info: dict, like {'username':'joey'}.
+ :param info: dict, like {'username':'joey'}.
See JEP-0077 for details.
'''
@@ -79,7 +79,7 @@ def _ReceivedRegInfo(con, resp, agent):
def register(disp, host, info, cb):
'''
Perform registration on remote server with provided info.
-
+
If registration fails you can get additional info from the dispatcher's
owner attributes lastErrNode, lastErr and lastErrCode.
'''
@@ -187,8 +187,8 @@ def setDefaultPrivacyList(disp, listname=None):
def setPrivacyList(disp, listname, tags):
'''
- Set the ruleset.
-
+ Set the ruleset.
+
'list' should be the simpleXML node formatted according to RFC 3921 (XMPP-IM) I.e. Node('list',{'name':listname},payload=[...]). Returns true on success.
'''
iq = Iq('set', NS_PRIVACY, xmlns = '')
@@ -196,7 +196,7 @@ def setPrivacyList(disp, listname, tags):
for item in tags:
if 'type' in item and 'value' in item:
item_tag = list_query.setTag('item', {'action': item['action'],
- 'order': item['order'], 'type': item['type'],
+ 'order': item['order'], 'type': item['type'],
'value': item['value']})
else:
item_tag = list_query.setTag('item', {'action': item['action'],