summary refs log tree commit diff stats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2019-04-14 21:22:03 +0200
committertoonn <toonn@toonn.io>2019-04-14 21:22:03 +0200
commit95051d7b014bb77b2747f04f5ac35c6cf6515cb2 (patch)
tree662a0c9723262ab8cc742a8792fd0aeef5d8fe22
parent03cb07a5707436dbb4a588ca1b9bb324ecfba808 (diff)
parentf6bdb4813cbc97c0395caac8be8e24814c0db88c (diff)
downloadranger-95051d7b014bb77b2747f04f5ac35c6cf6515cb2.tar.gz
Merge branch 'Vifon-remote_free_space'
-rw-r--r--ranger/gui/widgets/statusbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py
index f068bc7e..71064ed4 100644
--- a/ranger/gui/widgets/statusbar.py
+++ b/ranger/gui/widgets/statusbar.py
@@ -281,7 +281,7 @@ class StatusBar(Widget):  # pylint: disable=too-many-instance-attributes
             right.add(human_readable(target.disk_usage, separator='') + " sum")
             if self.settings.display_free_space_in_status_bar:
                 try:
-                    free = get_free_space(target.mount_path)
+                    free = get_free_space(target.path)
                 except OSError:
                     pass
                 else: