Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@sugarlabs.org>2012-10-07 22:36:31 (GMT)
committer Aleksey Lim <alsroot@sugarlabs.org>2012-10-07 22:36:31 (GMT)
commitbd73229885b65ecf9569da39aa9889366c5cd246 (patch)
tree260a1c394b836cc985e96de018b9c041a9d2b55b
parentb98cefde44681601f407b40943ccbab7c7e41151 (diff)
Populate bundleregistry from ctor to not break Journal initialization logic
-rw-r--r--plugin/__init__.py2
-rw-r--r--plugin/bundleregistry.py1
2 files changed, 0 insertions, 3 deletions
diff --git a/plugin/__init__.py b/plugin/__init__.py
index e6c3ec9..05e1097 100644
--- a/plugin/__init__.py
+++ b/plugin/__init__.py
@@ -78,8 +78,6 @@ def init():
def start():
global _launcher
- _bundleregistry.populate()
-
from jarabe.journal import misc
from .launcher import Launcher
diff --git a/plugin/bundleregistry.py b/plugin/bundleregistry.py
index 324921f..8707d5f 100644
--- a/plugin/bundleregistry.py
+++ b/plugin/bundleregistry.py
@@ -54,7 +54,6 @@ class BundleRegistry(gobject.GObject):
gobject.GObject.__init__(self)
self._bundles = {}
- def populate(self):
get_client().connect_to_signal('Event', self.__Event_cb)
self._populate()