diff options
-rw-r--r-- | ranger/config/commands_sample.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands_sample.py b/ranger/config/commands_sample.py index 4f74019b..ce48eb37 100644 --- a/ranger/config/commands_sample.py +++ b/ranger/config/commands_sample.py @@ -37,7 +37,7 @@ class my_edit(Command): # reference to the currently selected file. target_filename = self.fm.thisfile.path - # This is a generic function to print text in ranger. + # This is a generic function to print text in ranger. self.fm.notify("Let's edit the file " + target_filename + "!") # Using bad=True in fm.notify allows you to print error messages: |