Skip to content

Commit

Permalink
Merge pull request #29777 from fwyzard/Fix_moduleLabelsInSequences
Browse files Browse the repository at this point in the history
Fix moduleLabelsInSequences to support modules with a "label" parameter
  • Loading branch information
cmsbuild committed May 11, 2020
2 parents 01a0a2b + 2c6442e commit b5140c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FWCore/ParameterSet/python/Utilities.py
Expand Up @@ -162,7 +162,7 @@ def modulesInSequences(* sequences):


def moduleLabelsInSequences(* sequences):
return [module.label() for module in modulesInSequences(* sequences)]
return [module.label_() for module in modulesInSequences(* sequences)]

def createTaskWithAllProducersAndFilters(process):
from FWCore.ParameterSet.Config import Task
Expand Down

0 comments on commit b5140c9

Please sign in to comment.