Skip to content

Commit

Permalink
Clearing initial slash in chunk output path stem
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt committed Jul 6, 2023
1 parent c1f87b0 commit 6fb4486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/FCCAnalysisRun.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def runStages(args, rdfModule, preprocess, analysisFile):
runLocal(rdfModule, chunk_list[0], args)
else:
for index, chunk in enumerate(chunk_list):
args.output = '/{}/chunk{}.root'.format(output_stem, index)
args.output = '{}/chunk{}.root'.format(output_stem, index)
runLocal(rdfModule, chunk, args)


Expand Down

0 comments on commit 6fb4486

Please sign in to comment.