Skip to content
Snippets Groups Projects

ProductionSummary: fix bug: have to check existance instead of non-existance of …

Merged Andre Sailer requested to merge sailer/ILCDIRAC:fixProdSum into Rel-v26r0
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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