mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
uihelpers: Fix storage unit
We use GB everywhere, but there was one place missing where we used Gb instead.
This commit is contained in:
parent
948b5359d2
commit
3f47140cf9
@ -100,7 +100,7 @@ def update_host_space(conn, widget):
|
|||||||
return
|
return
|
||||||
|
|
||||||
def pretty_storage(size):
|
def pretty_storage(size):
|
||||||
return "%.1f Gb" % float(size)
|
return "%.1f GB" % float(size)
|
||||||
|
|
||||||
hd_label = ("%s available in the default location" %
|
hd_label = ("%s available in the default location" %
|
||||||
pretty_storage(max_storage))
|
pretty_storage(max_storage))
|
||||||
|
Loading…
Reference in New Issue
Block a user