summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index c4d82e58..6f2b8606 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -315,7 +315,7 @@ class Actions(EnvironmentAware, SettingsAware):
 
 	def sort(self, func=None, reverse=None):
 		if reverse is not None:
-			self.env.settings['reverse'] = bool(reverse)
+			self.env.settings['sort_reverse'] = bool(reverse)
 
 		if func is not None:
 			self.env.settings['sort'] = str(func)