From 05305143b3f824ccfe389f95bf4fcbf6bc7bda94 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Jan 20 2018 11:46:02 +0000 Subject: bin/get_roles.py: print roles one per line, so that we can grep them --- diff --git a/bin/get_roles.py b/bin/get_roles.py index 6ec102f..76dac05 100755 --- a/bin/get_roles.py +++ b/bin/get_roles.py @@ -59,7 +59,7 @@ def print_roles(): elif args.out == 'yaml': print(yaml.dump({'roles': roles}, default_flow_style=False)) else: - print(' '.join(roles)) + print('\n'.join(roles)) if __name__ == "__main__":