diff options
author | hut <hut@lavabit.com> | 2010-02-28 17:06:24 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-02-28 19:21:32 +0100 |
commit | 3d625436fc5284c38fcfe054396d98dcb7495a0d (patch) | |
tree | 787743f45f7061c74587cbad6a98c3bad07862d6 /ranger/fsobject/directory.py | |
parent | 811b7c282fdb3032659626190b936c3365fa4dc1 (diff) | |
download | ranger-3d625436fc5284c38fcfe054396d98dcb7495a0d.tar.gz |
fixed __nonzero__ compatibility problem
__nonzero__ was renamed to __bool__ in python3
Diffstat (limited to 'ranger/fsobject/directory.py')
-rw-r--r-- | ranger/fsobject/directory.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py index eebe6f03..5bbbe3e4 100644 --- a/ranger/fsobject/directory.py +++ b/ranger/fsobject/directory.py @@ -391,6 +391,7 @@ class Directory(FileSystemObject, Accumulator, SettingsAware): def __nonzero__(self): """Always True""" return True + __bool__ = __nonzero__ def __len__(self): """The number of containing files""" |