From 93c3a84eecfcab9f1ec421e5c6b21ee9d985a637 Mon Sep 17 00:00:00 2001 From: Matt Domsch Date: Fri, 2 Nov 2007 13:37:17 -0500 Subject: [PATCH] inf2mondb: replace various forms of "DELL" with "Dell" for consistency --- inf2mondb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inf2mondb.py b/inf2mondb.py index 0040fd8..6714f90 100755 --- a/inf2mondb.py +++ b/inf2mondb.py @@ -170,6 +170,8 @@ def main(): elif section.lower() == "strings": for key in ini.options(section): strings[key.lower()] = string.strip(ini.get(section, key)).replace('"','') + # exceptions + strings["dell"] = "Dell" for mfr in manufacturers.keys(): -- 2.25.1