Skip to content

Commit

Permalink
Merge pull request #297 from kjvbrt/chunk_path
Browse files Browse the repository at this point in the history
Clearing initial slash in chunk output path stem
  • Loading branch information
kjvbrt authored Jul 6, 2023
2 parents 60349e2 + 6fb4486 commit 2422e7e
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 2422e7e

Please sign in to comment.