diff options
author | Christian Zangl <laktak@cdak.net> | 2018-02-05 22:25:02 +0100 |
---|---|---|
committer | Christian Zangl <laktak@cdak.net> | 2018-02-07 22:57:08 +0100 |
commit | c921a418d1241170b78c3a4bdc4fd6a5083432fd (patch) | |
tree | b61bf94629d6002af45943318d16af6942446ca5 | |
parent | ced74b92d12dfa2abb06cccae3af7df0ab05cc81 (diff) | |
download | ranger-c921a418d1241170b78c3a4bdc4fd6a5083432fd.tar.gz |
fix automatically_count_files false
-rw-r--r-- | ranger/ext/human_readable.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ranger/ext/human_readable.py b/ranger/ext/human_readable.py index df74eabf..f365e594 100644 --- a/ranger/ext/human_readable.py +++ b/ranger/ext/human_readable.py @@ -15,6 +15,10 @@ def human_readable(byte, separator=' '): # pylint: disable=too-many-return-stat '1023 M' """ + # handle automatically_count_files false + if byte is None: + return '' + # I know this can be written much shorter, but this long version # performs much better than what I had before. If you attempt to # shorten this code, take performance into consideration. |