diff --git a/kolla/cmd/mergepwd.py b/kolla/cmd/mergepwd.py index b8fde1c778..44053f8e1b 100755 --- a/kolla/cmd/mergepwd.py +++ b/kolla/cmd/mergepwd.py @@ -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__':