Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/Shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/Shell.py')
-rwxr-xr-xshell/Shell.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/Shell.py b/shell/Shell.py
index ff668f0..2860ed0 100755
--- a/shell/Shell.py
+++ b/shell/Shell.py
@@ -14,6 +14,7 @@ from ConsoleWindow import ConsoleWindow
from Owner import ShellOwner
from PresenceService import PresenceService
from ActivityHost import ActivityHost
+from ChatListener import ChatListener
class ShellDbusService(dbus.service.Object):
def __init__(self, shell, bus_name):
@@ -57,6 +58,9 @@ class Shell:
self._owner = ShellOwner()
self._owner.announce()
+ chat_listener = ChatListener()
+ chat_listener.start()
+
self._home_window = HomeWindow(self)
self._home_window.show()