Skip to content

Commit

Permalink
Merge pull request #140 from INTI-CMNB/fix_ref_separator_save
Browse files Browse the repository at this point in the history
Fixed the ref_separator save, must be quoted.
  • Loading branch information
SchrodingersGat committed Sep 19, 2020
2 parents ea9e538 + 42b1dba commit 0ce83c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kibom/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def Write(self, file):
cf.set(self.SECTION_GENERAL, self.OPT_CONFIG_FIELD, self.configField)

cf.set(self.SECTION_GENERAL, '; Character used to separate reference designators in output')
cf.set(self.SECTION_GENERAL, self.OPT_REF_SEPARATOR, self.refSeparator)
cf.set(self.SECTION_GENERAL, self.OPT_REF_SEPARATOR, "'" + self.refSeparator + "'")

cf.set(self.SECTION_GENERAL, '; Make a backup of the bom before generating the new one, using the following template')
cf.set(self.SECTION_GENERAL, self.OPT_BACKUP, self.backup)
Expand Down

0 comments on commit 0ce83c2

Please sign in to comment.