Merge "Sometimes merging of passwords.yml gives json"

This commit is contained in:
Jenkins 2016-12-08 16:18:44 +00:00 committed by Gerrit Code Review
commit f65c0ee806

View File

@ -32,7 +32,7 @@ def main():
new_passwords.update(old_passwords)
with open(args.final, "w") as destination:
yaml.dump(new_passwords, destination)
yaml.dump(new_passwords, destination, default_flow_style=False)
if __name__ == '__main__':