From c13bfa00e76a730d2549f05ddfdc5e81a154b99a Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Wed, 8 Jul 2015 11:44:54 +0200 Subject: [PATCH] contrib/rh-bkr: break lines after list substititions Makes the resulting kickstart nicer. --- contrib/rh-bkr/bkr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/rh-bkr/bkr.py b/contrib/rh-bkr/bkr.py index a7318df7b5..10df1c15c5 100755 --- a/contrib/rh-bkr/bkr.py +++ b/contrib/rh-bkr/bkr.py @@ -753,7 +753,7 @@ class CmdSubmit(CmdBase): if is_sequence(v): if index is not None and index != '@': raise Exception("Using index %s is not implemented" % index) - v = ' '.join(v) + v = " \\\n\t".join(v) replacement[key] = v return v