diff options
author | ael-code <tommy.ael@gmail.com> | 2016-11-09 14:25:17 +0100 |
---|---|---|
committer | ael-code <tommy.ael@gmail.com> | 2016-11-09 14:27:02 +0100 |
commit | 206bc1c4ae1d0e962402b904dbe994cd429834c2 (patch) | |
tree | a92a3552be1e1e80171a532fcfd236b3696de4b7 | |
parent | 055247a002757ab439e68f8497b3935f28a839c4 (diff) | |
download | ranger-206bc1c4ae1d0e962402b904dbe994cd429834c2.tar.gz |
typo fix in move function docstring
-rw-r--r-- | ranger/core/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index c119c501..ab3abb06 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -419,7 +419,7 @@ class Actions(FileManagerAware, SettingsAware): Example: self.move(down=4, pages=True) # moves down by 4 pages. self.move(to=2, pages=True) # moves to page 2. - self.move(to=1, percentage=True) # moves to 80% + self.move(to=80, percentage=True) # moves to 80% """ cwd = self.thisdir direction = Direction(kw) |