From: Michael Tremer Date: Sun, 2 Jan 2011 12:16:36 +0000 (+0100) Subject: iuse: Fix some data that is shown on the images. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b9dcbba766ea627f750d0340e67c2a6a4a7e788;p=ipfire.org.git iuse: Fix some data that is shown on the images. --- diff --git a/www/webapp/backend/iuse.py b/www/webapp/backend/iuse.py index c84fee7b..5acefd03 100644 --- a/www/webapp/backend/iuse.py +++ b/www/webapp/backend/iuse.py @@ -76,12 +76,12 @@ class Image1(ImageObject): # Hardware information hw = [ self.profile.cpu.model_string, - "Memory: %.1fG" % (self.profile.memory / 1024**2), + "Mem: %.1fG" % (self.profile.memory / 1024**2), ] if self.profile.virtual: virt = "V-%s" % self.profile.hypervisor.vendor - if self.profile.hypervisor.type == "PV": + if self.profile.hypervisor.type == "para": virt = "%s-PV" % virt hw.append(virt)