mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-12 09:18:00 +03: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
|
||||
|
||||
def pretty_storage(size):
|
||||
return "%.1f Gb" % float(size)
|
||||
return "%.1f GB" % float(size)
|
||||
|
||||
hd_label = ("%s available in the default location" %
|
||||
pretty_storage(max_storage))
|
||||
|
Loading…
Reference in New Issue
Block a user