Skip to content

Commit

Permalink
Fixed missing class qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed Nov 24, 2023
1 parent 859cbda commit d21a294
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 @@ -357,7 +357,7 @@ def Write(self, file):
cf.add_section(self.SECTION_REGEXCLUDES)
cf.set(self.SECTION_REGEXCLUDES, '; A series of regular expressions used to exclude parts from the BoM')
cf.set(self.SECTION_REGEXCLUDES, '; If a component matches ANY of these, it will be excluded from the BoM')
cf.set(self.SECTION_REGEXCLUDES, '; Important: the [' + SECTION_REGINCLUDES + '] section has more precedence')
cf.set(self.SECTION_REGEXCLUDES, '; Important: the [' + self.SECTION_REGINCLUDES + '] section has more precedence')
cf.set(self.SECTION_REGEXCLUDES, '; Column names are case-insensitive')
cf.set(self.SECTION_REGEXCLUDES, '; Format is: "[ColumName]\t[Regex]" (separated by a tab)')

Expand Down

0 comments on commit d21a294

Please sign in to comment.