Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Elemer Nagy
athena
Commits
f97bf689
Commit
f97bf689
authored
7 years ago
by
Attila Krasznahorkay
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tools/FullChainTests/python/TrfBuilder.py
+2
-3
2 additions, 3 deletions
Tools/FullChainTests/python/TrfBuilder.py
with
2 additions
and
3 deletions
Tools/FullChainTests/python/TrfBuilder.py
+
2
−
3
View file @
f97bf689
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment