From 0b9dcbba766ea627f750d0340e67c2a6a4a7e788 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 2 Jan 2011 13:16:36 +0100 Subject: [PATCH] iuse: Fix some data that is shown on the images. --- www/webapp/backend/iuse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.47.3