summary refs log tree commit diff stats
path: root/ranger/applications.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/applications.py')
-rw-r--r--ranger/applications.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/applications.py b/ranger/applications.py
index 1847c6d0..c01e13a7 100644
--- a/ranger/applications.py
+++ b/ranger/applications.py
@@ -49,7 +49,7 @@ class Applications(FileManagerAware):
 			return self.app_mplayer(context)
 		else:
 			return self.app_editor(context)
-	
+
 	def app_pager(self, context):
 		return ('less', ) + tuple(context)
 
@@ -91,7 +91,7 @@ class Applications(FileManagerAware):
 			return getattr(self, 'app_' + app)
 		except AttributeError:
 			return self.app_default
-	
+
 	def apply(self, app, context):
 		if not app:
 			app = 'default'