diff options
Diffstat (limited to 'lvc')
-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 - |