Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/presence/presenceservice.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/presence/presenceservice.py')
-rw-r--r--sugar/presence/presenceservice.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar/presence/presenceservice.py b/sugar/presence/presenceservice.py
index ce5fbc5..cd5db0c 100644
--- a/sugar/presence/presenceservice.py
+++ b/sugar/presence/presenceservice.py
@@ -430,10 +430,10 @@ class _MockPresenceService(gobject.GObject):
return None
_ps = None
-def get_instance():
+def get_instance(allow_offline_iface=False):
"""Retrieve this process' view of the PresenceService"""
global _ps
if not _ps:
- _ps = PresenceService()
+ _ps = PresenceService(allow_offline_iface)
return _ps