create: s/Gb/GB/ for storage units

This commit is contained in:
Cole Robinson 2012-01-29 21:51:07 -05:00
parent 9679c841b8
commit b7a533a451

View File

@ -1960,7 +1960,7 @@ class vmmCreate(vmmGObjectUI):
return True
def pretty_storage(self, size):
return "%.1f Gb" % float(size)
return "%.1f GB" % float(size)
def pretty_memory(self, mem):
return "%d MB" % (mem / 1024.0)