diff options
author | hut <hut@lavabit.com> | 2012-04-13 15:39:21 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2012-04-13 15:39:21 +0200 |
commit | 1b38d0f60a220599b813e1a94698ea5490c6f24b (patch) | |
tree | 8d873ceddf91e91fd82849f6050cc2340a604136 | |
parent | ac5916412262658fbe8484351b1003d08ac0a0f0 (diff) | |
download | ranger-1b38d0f60a220599b813e1a94698ea5490c6f24b.tar.gz |
ext.get_executables: Fixed docstring
-rw-r--r-- | ranger/ext/get_executables.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ranger/ext/get_executables.py b/ranger/ext/get_executables.py index 92a80bab..0c01ffd6 100644 --- a/ranger/ext/get_executables.py +++ b/ranger/ext/get_executables.py @@ -11,9 +11,7 @@ _cached_executables = None def get_executables(): """ - Return all executable files in each of the given directories. - - Looks in $PATH by default. + Return all executable files in $PATH. Cached version. """ global _cached_executables if _cached_executables is None: |