Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-10-19 15:09:42 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-10-19 15:09:42 (GMT)
commit54941c542b3ad56e9b96f081c98e02d9eac39ae4 (patch)
tree8e1c93a858586f378e41962b89278a27dad17a7c /services
parent4f81f305b2da8098f323d22bae78e0239c88188f (diff)
Do not traceback on properties containing =
Diffstat (limited to 'services')
-rw-r--r--services/presence/PresenceService.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/presence/PresenceService.py b/services/presence/PresenceService.py
index f591ccd..1c3990b 100644
--- a/services/presence/PresenceService.py
+++ b/services/presence/PresenceService.py
@@ -115,7 +115,7 @@ def _txt_to_dict(txt):
key = item
value = True
else:
- (key, value) = item.split('=')
+ (key, value) = item.split('=', 1)
prop_dict[key] = value
return prop_dict