Commit c3f443f5 by Michael DeHaan

fix sorting

parent 761330b1
......@@ -273,7 +273,7 @@ def main():
incfile = open(args.includes_file, "w")
incfile.write(includecmt)
for module in os.listdir(args.module_dir):
for module in sorted(os.listdir(args.module_dir)):
if len(args.module_list):
if not module in args.module_list:
continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment