diff options
author | hut <hut@lavabit.com> | 2013-02-15 18:22:22 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-02-15 18:32:43 +0100 |
commit | 9b065d0ac7ea3a26f73146b33e087e1ad35980f3 (patch) | |
tree | 2ba29fbd1a5c9dbb4fd032a36ea070c5507eaa86 /examples | |
parent | 325cac10f7c3af8e7c8fd22469f4354e72a2df90 (diff) | |
download | ranger-9b065d0ac7ea3a26f73146b33e087e1ad35980f3.tar.gz |
fsobject.directory.accept_file: pass directory, not dirname
That way, the accept_file function can get whatever information about the directory it needs.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/plugin_file_filter.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/plugin_file_filter.py b/examples/plugin_file_filter.py index 99d026bb..39e4e285 100644 --- a/examples/plugin_file_filter.py +++ b/examples/plugin_file_filter.py @@ -6,11 +6,11 @@ import ranger.fsobject.directory old_accept_file = ranger.fsobject.directory.accept_file # Define a new one -def custom_accept_file(fname, mypath, hidden_filter, name_filter): - if hidden_filter and mypath == '/' and fname in ('boot', 'sbin', 'proc', 'sys'): +def custom_accept_file(fname, directory, hidden_filter, name_filter): + if hidden_filter and directory.path == '/' and fname in ('boot', 'sbin', 'proc', 'sys'): return False else: - return old_accept_file(fname, mypath, hidden_filter, name_filter) + return old_accept_file(fname, directory, hidden_filter, name_filter) # Overwrite the old function import ranger.fsobject.directory |