contrib/rh-bkr: break lines after list substititions

Makes the resulting kickstart nicer.
This commit is contained in:
Lubomir Rintel 2015-07-08 11:44:54 +02:00
parent 2a729bdb78
commit c13bfa00e7

View file

@ -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