uihelpers: Fix storage unit

We use GB everywhere, but there was one place missing where we used Gb
instead.
This commit is contained in:
Martin Kletzander 2013-08-27 07:32:14 +02:00
parent 948b5359d2
commit 3f47140cf9

View File

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