diff options
-rw-r--r-- | ranger/defaults/apps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py index 4fc4dc3c..6c09298a 100644 --- a/ranger/defaults/apps.py +++ b/ranger/defaults/apps.py @@ -64,9 +64,9 @@ class CustomApplications(Applications): if f.extension in ('xml', ): return self.app_editor(c) if f.extension in ('html', 'htm', 'xhtml'): - return self.either(c, 'firefox', 'opera') - if f.extension in ('swf', ): return self.either(c, 'firefox', 'opera', 'elinks') + if f.extension in ('swf', ): + return self.either(c, 'firefox', 'opera') if f.extension == 'nes': return self.app_fceux(c) if f.extension in ('swc', 'smc'): |