Skip to content

Commit

Permalink
Merge pull request #36 from missirol/devel_changeNameOfSchedule
Browse files Browse the repository at this point in the history
change name of `cms.Schedule` to "schedule"
  • Loading branch information
missirol authored Nov 29, 2021
2 parents db9af5d + 9c51249 commit e3eed41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/confdb/converter/python/PythonConfigurationWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public String toString(IConfiguration conf, WriteProcess writeProcess) throws Co
}

if (conf.pathCount() > 0) {
str.append("\n" + object + "HLTSchedule = cms.Schedule( *(");
str.append("\n" + object + "schedule = cms.Schedule( *(");
for (int i = 0; i < conf.pathCount(); i++) {
Path path = conf.path(i);
//we need the "," when there is just one path
Expand Down

0 comments on commit e3eed41

Please sign in to comment.