diff options
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r-- | ranger/core/actions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 26223b5f..3d74e03a 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -155,13 +155,13 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): """ Change what is displayed as a filename. - - "mode" may be: "filename", "permissions", "title", the mode "normal" + - "mode" may be: "filename", "permissions", "papertitle", the mode "normal" is mapped to "filename". - "directory" specifies the directory. None means the current directory - "depth" specifies the recursion depth """ - assert mode in ("normal", "filename", "permissions", "title") + assert mode in ("normal", "filename", "permissions", "papertitle") if mode == "normal": mode = "filename" |