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