diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-02 18:11:20 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-02 18:11:20 -0500 |
commit | c35b4a90354daf442e989ba7007822ee6b12b534 (patch) | |
tree | c3c0c830f74436ad8c26039f57542a7bfb65314f | |
parent | cc3990dcfaa0349f207fa4db8e907f12761f9538 (diff) | |
download | librevideoconverter-c35b4a90354daf442e989ba7007822ee6b12b534.tar.lz librevideoconverter-c35b4a90354daf442e989ba7007822ee6b12b534.tar.xz librevideoconverter-c35b4a90354daf442e989ba7007822ee6b12b534.zip |
fix conversion from console
-rw-r--r-- | lvc/ui/console.py | 2 | ||||
-rw-r--r-- | lvc/widgets/app.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lvc/ui/console.py b/lvc/ui/console.py index 871bfd6..1282745 100644 --- a/lvc/ui/console.py +++ b/lvc/ui/console.py @@ -98,7 +98,7 @@ class Application(lvc.Application): for filename in args: try: - c = app.start_conversion(filename, options.converter) + c = self.start_conversion(filename, options.converter) except ValueError: message = 'could not parse %r' % filename if options.json: diff --git a/lvc/widgets/app.py b/lvc/widgets/app.py index 531b745..5f80c7a 100644 --- a/lvc/widgets/app.py +++ b/lvc/widgets/app.py @@ -1,4 +1,3 @@ # app.py widgetapp = None - |