aboutsummaryrefslogtreecommitdiffstats
path: root/mvc/signals.py
diff options
context:
space:
mode:
authorJesús Eduardo <heckyel@hyperbola.info>2017-08-27 18:06:05 -0500
committerJesús Eduardo <heckyel@hyperbola.info>2017-08-27 18:06:05 -0500
commiteb1896583afbbb622cadcde1a24e17173f61904f (patch)
tree8df52e126da67a8cfca09890ff3183142fe7010a /mvc/signals.py
parent9dbf5be102d8c6fc80a2444302c1fba78556540d (diff)
downloadlibrevideoconverter-eb1896583afbbb622cadcde1a24e17173f61904f.tar.lz
librevideoconverter-eb1896583afbbb622cadcde1a24e17173f61904f.tar.xz
librevideoconverter-eb1896583afbbb622cadcde1a24e17173f61904f.zip
identation fixed
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()