From df8652f1b997f076cad1ef256881d2ac43c617e1 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 15 May 2016 23:38:45 +1000 Subject: [PATCH] Preferences cleanup --- KiBOM/preferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KiBOM/preferences.py b/KiBOM/preferences.py index aa925945..d356e32e 100644 --- a/KiBOM/preferences.py +++ b/KiBOM/preferences.py @@ -154,7 +154,7 @@ class BomPref: cf.set(self.SECTION_GENERAL, self.OPT_GROUP_CONN, 1 if self.groupConnectors else 0) cf.set(self.SECTION_GENERAL, "; If '{opt}' option is set to 1, each component group will be tested against a number of regular-expressions (specified, per column, below). If any matches are found, the row is ignored in the output file".format(opt=self.OPT_USE_REGEX)) cf.set(self.SECTION_GENERAL, self.OPT_USE_REGEX, 1 if self.useRegex else 0) - cf.set(self.SECTION_GENERAL, "; If '{opt}' option is set to 1, two components must have the same footprint to be grouped together. If {opt} is not set, then footprint comparison is ignored.".format(opt=self.OPT_COMP_FP)) + cf.set(self.SECTION_GENERAL, "; If '{opt}' option is set to 1, two components must have the same footprint to be grouped together. If '{opt}' is not set, then footprint comparison is ignored.".format(opt=self.OPT_COMP_FP)) cf.set(self.SECTION_GENERAL, self.OPT_COMP_FP, 1 if self.compareFootprints else 0) cf.add_section(self.SECTION_IGNORE)