From f97bf689af18418b1ff30d68692ffc63ddbb3b0a Mon Sep 17 00:00:00 2001 From: Attila Krasznahorkay <Attila.Krasznahorkay@cern.ch> Date: Mon, 11 Dec 2017 10:18:52 +0100 Subject: [PATCH] Fixed a syntax error in FullChainTests with how some comments were put into the code. Former-commit-id: 1110afe1e4395302fb907d350b563066057cdb7e --- Tools/FullChainTests/python/TrfBuilder.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tools/FullChainTests/python/TrfBuilder.py b/Tools/FullChainTests/python/TrfBuilder.py index 8fcf6210ced..3e1386182d6 100644 --- a/Tools/FullChainTests/python/TrfBuilder.py +++ b/Tools/FullChainTests/python/TrfBuilder.py @@ -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: -- GitLab