Commit 7672e9fe by Michael Scherer

sort the option_key to have a constant predictable line

parent 264945a1
......@@ -254,7 +254,7 @@ def writekeys(module, filename, keys):
option_str = ""
if options:
option_strings = []
for option_key in options.keys():
for option_key in sorted(options.keys()):
if options[option_key]:
option_strings.append("%s=%s" % (option_key, options[option_key]))
else:
......
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