summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2015-07-08 11:44:54 +0200
committerLubomir Rintel <lkundrak@v3.sk>2015-07-09 11:05:04 +0200
commitc13bfa00e76a730d2549f05ddfdc5e81a154b99a (patch)
treec338e98e54b472b90ed68b9ebb7cbb9fcc5d72ff
parent2a729bdb7897d9bd4e61249cfe865f2ae066fcb6 (diff)
downloadNetworkManager-c13bfa00e76a730d2549f05ddfdc5e81a154b99a.tar.gz
contrib/rh-bkr: break lines after list substititions
Makes the resulting kickstart nicer.
-rwxr-xr-xcontrib/rh-bkr/bkr.py2
1 files changed, 1 insertions, 1 deletions
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