[modules/disk] Remove stray unicode character in output
This commit is contained in:
parent
422348e01d
commit
16c202a7ed
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class Module(bumblebee.engine.Module):
|
||||||
cmd="nautilus {}".format(self._path))
|
cmd="nautilus {}".format(self._path))
|
||||||
|
|
||||||
def diskspace(self, widget):
|
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._used),
|
||||||
bumblebee.util.bytefmt(self._size), self._perc
|
bumblebee.util.bytefmt(self._size), self._perc
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue