[modules/disk] Remove stray unicode character in output

This commit is contained in:
Tobi-wan Kenobi 2017-03-10 08:17:43 +01:00
parent 422348e01d
commit 16c202a7ed

View file

@ -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
)