From b6e22436f21c3cf2a96ee9e288ff943f6421b021 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Fri, 3 Jun 2011 14:47:58 -0700 Subject: [PATCH] Prettify config debug printing. --- teuthology/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/run.py b/teuthology/run.py index 3a0fe29bf0f3a..d25fc43526637 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -55,7 +55,7 @@ def main(): level=loglevel, ) - log.debug('\n '.join(['Config:', ] + yaml.safe_dump(ctx.config).splitlines())) + log.debug('\n '.join(['Config:', ] + yaml.safe_dump(ctx.config, default_flow_style=False).splitlines())) log.info('Opening connections...') from orchestra import connection, remote -- 2.39.5