diff options
-rw-r--r-- | ranger/api/apps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/api/apps.py b/ranger/api/apps.py index dc4918d8..f1fcba62 100644 --- a/ranger/api/apps.py +++ b/ranger/api/apps.py @@ -100,7 +100,7 @@ class Applications(FileManagerAware): handler = getattr(self, 'app_' + app) except AttributeError: if app in get_executables(): - return _generic_app(app, context) + return [app] + list(context) handler = self.app_default arguments = handler(context) # flatten |