Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
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