diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-17 13:07:07 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-17 13:07:07 -0500 |
commit | 7c6ef5aa86ed1171cb84a885109043aee90ec1a1 (patch) | |
tree | f05c239984c399c3fe1a4bef6ccee1d072419f51 | |
parent | d5319d8b6f30b75b4fb65cf661cff980f76cb960 (diff) | |
download | librevideoconverter-7c6ef5aa86ed1171cb84a885109043aee90ec1a1.tar.lz librevideoconverter-7c6ef5aa86ed1171cb84a885109043aee90ec1a1.tar.xz librevideoconverter-7c6ef5aa86ed1171cb84a885109043aee90ec1a1.zip |
pep8 en lvc/ui/console.py
-rw-r--r-- | lvc/ui/console.py | 3 |
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) |