about summary refs log tree commit diff stats
path: root/examples/plugin_file_filter.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-02-15 18:22:22 +0100
committerhut <hut@lavabit.com>2013-02-15 18:32:43 +0100
commit9b065d0ac7ea3a26f73146b33e087e1ad35980f3 (patch)
tree2ba29fbd1a5c9dbb4fd032a36ea070c5507eaa86 /examples/plugin_file_filter.py
parent325cac10f7c3af8e7c8fd22469f4354e72a2df90 (diff)
downloadranger-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/plugin_file_filter.py')
-rw-r--r--examples/plugin_file_filter.py6
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