# | Line 71 | Line 71 | class Reporter(Actor): | |
---|---|---|
71 | filesRequired=0 | |
72 | lumis = [] | |
73 | for job in task.getJobs(): | |
74 | < | if (job.runningJob['applicationReturnCode']>0 or job.runningJob['wrapperReturnCode']>0): continue |
74 | > | if (job.runningJob['applicationReturnCode']!=0 or job.runningJob['wrapperReturnCode']!=0): continue |
75 | # get FJR filename | |
76 | fjr = self.fjrDirectory + job['outputFiles'][-1] | |
77 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |