Skip to content
Snippets Groups Projects
Commit f97bf689 authored by Attila Krasznahorkay's avatar Attila Krasznahorkay
Browse files

Fixed a syntax error in FullChainTests with how some comments were put into the code.

Former-commit-id: 1110afe1e4395302fb907d350b563066057cdb7e
parent f6ff5fc3
No related branches found
No related tags found
No related merge requests found
......@@ -51,9 +51,8 @@ class TrfBuilder:
if section == sectionName: # take only our section for sectionName into account
sectionCounter = sectionCounter + 1
for option in self.DigiRecoConfig.options(section): # loop over all settings in specified our section
#pfx += option + '=' \
#pfx += ' --' + option + '=' \
pfx += ' --' + option + ' ' \ # to support multiple values --preExec "AAA:aaa" "BBB:bbb"
# to support multiple values --preExec "AAA:aaa" "BBB:bbb"
pfx += ' --' + option + ' ' \
+ self.DigiRecoConfig.get(section, option) \
+ ' '
if sectionCounter == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment