]> git.ipfire.org Git - people/shoehn/ipfire.org.git/commitdiff
iuse: Fix some data that is shown on the images.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 2 Jan 2011 12:16:36 +0000 (13:16 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 2 Jan 2011 12:16:36 +0000 (13:16 +0100)
www/webapp/backend/iuse.py

index c84fee7bcd34d7926203bb3d87758941bdac6a8a..5acefd038573a489530cdd5ae77c928c0665255b 100644 (file)
@@ -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)