Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ILCDIRAC
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
CLICdp
iLCDirac
ILCDIRAC
Merge requests
!88
ProductionSummary: fix bug: have to check existance instead of non-existance of …
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ProductionSummary: fix bug: have to check existance instead of non-existance of …
sailer/ILCDIRAC:fixProdSum
into
Rel-v26r0
Overview
7
Commits
1
Pipelines
1
Changes
1
Merged
Andre Sailer
requested to merge
sailer/ILCDIRAC:fixProdSum
into
Rel-v26r0
8 years ago
Overview
7
Commits
1
Pipelines
1
Changes
1
Expand
…key, introduced in previous cleanup of has_key FIX
ILCDIRAC-726
👍
0
👎
0
Merge request reports
Compare
Rel-v26r0
Rel-v26r0 (base)
and
latest version
latest version
1800150d
1 commit,
8 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ILCTransformationSystem/scripts/dirac-ilc-production-summary.py
+
1
−
1
Options
@@ -327,7 +327,7 @@ def _getProductionSummary():
dirmeta
[
'
NumberOfEvents
'
]
=
0
#print processesdict[dirmeta['EvtType']]
dirmeta
[
'
detail
'
]
=
''
if
dirmeta
[
'
EvtType
'
]
not
in
processesdict
:
if
dirmeta
[
'
EvtType
'
]
in
processesdict
:
if
'
Detail
'
in
processesdict
[
dirmeta
[
'
EvtType
'
]]:
detail
=
processesdict
[
dirmeta
[
'
EvtType
'
]][
'
Detail
'
]
Loading