scripts/liberty: Fix indenting first value in list.

Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
Tim 'mithro' Ansell 2020-07-12 22:20:52 -07:00
parent f2838cf382
commit 73d129ef85
1 changed files with 2 additions and 2 deletions

View File

@ -706,8 +706,8 @@ def liberty_list(k, v, i=tuple()):
for l in v:
o.append('%s"%s", \\' % (INDENT*(len(i)+1), join(l)))
o[1] = o[0]+o[1]
o.pop(0)
o0 = o.pop(0)
o[0] = o0+o[0].lstrip()
o[-1] = o[-1][:-3] + ');'
else: