aboutsummaryrefslogtreecommitdiffstats
path: root/mvc/signals.py
diff options
context:
space:
mode:
Diffstat (limited to 'mvc/signals.py')
-rw-r--r--mvc/signals.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/mvc/signals.py b/mvc/signals.py
index 6b09406..2f64dc9 100644
--- a/mvc/signals.py
+++ b/mvc/signals.py
@@ -262,10 +262,10 @@ class SystemSignals(SignalEmitter):
"""
def __init__(self):
SignalEmitter.__init__(self, 'error', 'startup-success',
- 'startup-failure', 'shutdown',
- 'update-available', 'new-dialog',
- 'theme-first-run', 'videos-added',
- 'download-complete')
+ 'startup-failure', 'shutdown',
+ 'update-available', 'new-dialog',
+ 'theme-first-run', 'videos-added',
+ 'download-complete')
def shutdown(self):
self.emit('shutdown')
@@ -296,6 +296,4 @@ class SystemSignals(SignalEmitter):
exc_info = None
logging.error('%s: %s' % (when, details), exc_info=exc_info)
-
-
system = SystemSignals()