Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/Shell.py
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-07-19 11:36:58 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-07-19 11:36:58 (GMT)
commitdb04a3d2c9633df327707d869c5814fa2c35513f (patch)
treeb9192a033d6d61a958d28127a14e90861e3fc245 /shell/Shell.py
parentf413416e159887240151a29db5e163b8aa8a5c5f (diff)
Fix up signal decorator arguments and some undefined variables
Diffstat (limited to 'shell/Shell.py')
-rwxr-xr-xshell/Shell.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/Shell.py b/shell/Shell.py
index 5998a95..ef9b633 100755
--- a/shell/Shell.py
+++ b/shell/Shell.py
@@ -14,6 +14,7 @@ from sugar import env
from sugar.activity import Activity
from PeopleWindow import PeopleWindow
from Owner import ShellOwner
+from PresenceService import PresenceService
class ShellDbusService(dbus.service.Object):
def __init__(self, shell, bus_name):
@@ -50,6 +51,7 @@ class Shell:
bus_name = dbus.service.BusName('com.redhat.Sugar.Shell', bus=session_bus)
ShellDbusService(self, bus_name)
+ self._ps = PresenceService.PresenceService()
self._owner = ShellOwner()
self._registry = ActivityRegistry()