From 5dfd20cef1f8a97f0948dc7ffbfeda78b0f12e07 Mon Sep 17 00:00:00 2001 From: Matt Domsch Date: Fri, 2 Nov 2007 13:36:00 -0500 Subject: [PATCH] inf2mondb: remove double-quote characters in ini string table They're unnecessary and don't belong in the output file. --- inf2mondb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inf2mondb.py b/inf2mondb.py index 6ad3370..0040fd8 100755 --- a/inf2mondb.py +++ b/inf2mondb.py @@ -169,7 +169,7 @@ def main(): elif section.lower() == "strings": for key in ini.options(section): - strings[key.lower()] = string.strip(ini.get(section, key)) + strings[key.lower()] = string.strip(ini.get(section, key)).replace('"','') for mfr in manufacturers.keys(): -- 2.25.1