aboutsummaryrefslogtreecommitdiffstats
path: root/lvc
diff options
context:
space:
mode:
Diffstat (limited to 'lvc')
-rw-r--r--lvc/ui/console.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lvc/ui/console.py b/lvc/ui/console.py
index e7eec9c..a0c373b 100644
--- a/lvc/ui/console.py
+++ b/lvc/ui/console.py
@@ -21,6 +21,7 @@ parser.add_option('-l', '--list-converters', action='store_true',
parser.add_option('-c', '--converter', dest='converter',
help="Specify the type of conversion to make.")
+
class Application(lvc.Application):
def run(self):
@@ -109,7 +110,7 @@ class Application(lvc.Application):
while self.conversion_manager.running:
self.conversion_manager.check_notifications()
time.sleep(1)
- self.conversion_manager.check_notifications() # one last time
+ self.conversion_manager.check_notifications() # one last time
sys.exit(0 if not any_failed else 1)