]> git.ipfire.org Git - oddments/fireinfo.git/commitdiff
Ignore any string with Chassis.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 11 Dec 2010 19:14:04 +0000 (20:14 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 11 Dec 2010 19:14:04 +0000 (20:14 +0100)
fireinfo/system.py

index df1a567c50f8c1918b8ffa0a7d827ba292d86c4a..21a7496e992be4a4f9350b5ff55f4f9ac9e56362 100644 (file)
@@ -20,7 +20,7 @@ INVALID_ID_STRINGS = (
        "OEM", "O.E.M.", "o.e.m.",
        "N/A", "n/a",
        "12345", "54321", "202020",
-       "chassis",
+       "Chassis", "chassis",
 )
 
 class Singleton(type):