From: Michael Tremer Date: Sun, 28 Nov 2010 13:36:16 +0000 (+0100) Subject: Send CPU model as a string. X-Git-Tag: v0.3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eecf2eea63ddca56025e9f471413bfb7b9a40a27;p=oddments%2Ffireinfo.git Send CPU model as a string. --- diff --git a/fireinfo/system.py b/fireinfo/system.py index 674abdd..836e8db 100644 --- a/fireinfo/system.py +++ b/fireinfo/system.py @@ -83,6 +83,7 @@ class System(object): "arch" : self.arch, "vendor" : self.cpu.vendor, "model" : self.cpu.model, + "model_string" : self.cpu.model_string, "stepping" : self.cpu.stepping, "flags" : self.cpu.flags, "bogomips" : self.cpu.bogomips,