From 16c202a7edfc33c2438d23ec286b75b59cb21864 Mon Sep 17 00:00:00 2001 From: Tobi-wan Kenobi Date: Fri, 10 Mar 2017 08:17:43 +0100 Subject: [PATCH] [modules/disk] Remove stray unicode character in output --- bumblebee/modules/disk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/modules/disk.py b/bumblebee/modules/disk.py index 7132e55..aee40ac 100644 --- a/bumblebee/modules/disk.py +++ b/bumblebee/modules/disk.py @@ -28,7 +28,7 @@ class Module(bumblebee.engine.Module): cmd="nautilus {}".format(self._path)) def diskspace(self, widget): - return "\uf0a0{} {}/{} ({:05.02f}%)".format(self._path, + return "{} {}/{} ({:05.02f}%)".format(self._path, bumblebee.util.bytefmt(self._used), bumblebee.util.bytefmt(self._size), self._perc )