We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40a3bb6 commit e6e1f91Copy full SHA for e6e1f91
scripts/datamodel-doc/extractDataModel.py
@@ -81,7 +81,7 @@ def main(initCard):
81
82
# loop over these header files and join the related datamodels
83
# with the AO2D datamodel
84
- for infile in inclfiles:
+ for infile in sorted(inclfiles):
85
# extract datamodel name
86
path = infile.split('/')[:-1]
87
cfile = infile.split('/')[-1]
@@ -127,7 +127,7 @@ def main(initCard):
127
cmakefiles.extend(stream.readlines())
128
129
cerelations = DM.CERelations(initCard)
130
- for cfile in cmakefiles:
+ for cfile in sorted(cmakefiles):
131
cfile = cfile.rstrip("\n")
132
cerelations.addRelations(cfile)
133
0 commit comments