Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpgritti@gmail.com>2008-09-17 02:30:35 (GMT)
committer Marco Pesenti Gritti <mpgritti@gmail.com>2008-09-17 02:30:35 (GMT)
commitefad564146a8b70c834b4bc128ad729144006f71 (patch)
tree42f20a6a88ed2a8c66d4b16c49f2220481476b4a /src
parent46e88bd0953eb5372ca064bad9adc8d1935c8c3c (diff)
Remove journal activity check, since it has been moved into the shell.
Diffstat (limited to 'src')
-rw-r--r--src/uicheck.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/uicheck.py b/src/uicheck.py
index df359e9..a7eb922 100644
--- a/src/uicheck.py
+++ b/src/uicheck.py
@@ -104,13 +104,6 @@ class ActivityCheck(Check):
get_sugar_window_type(window) != 'launcher':
self.succeeded = True
-class JournalCheck(ActivityCheck):
- def __init__(self):
- ActivityCheck.__init__(self, 'org.laptop.JournalActivity')
-
- def launch_activity(self):
- pass
-
def _timeout_cb():
check = checks_queue[0]
if check.failed:
@@ -138,8 +131,6 @@ def main():
checks_queue.append(ShellCheck())
if get_dbus_version() >= '1.2.1':
- checks_queue.append(JournalCheck())
-
# FIXME needs to get a list of the installed activities
checks_queue.append(ActivityCheck('org.laptop.Log'))
checks_queue.append(ActivityCheck('org.laptop.Chat'))