Skip to content

Commit 9846918

Browse files
committed
UBUNTU: [Packaging] update annotations scripts
BugLink: https://bugs.launchpad.net/bugs/1786013 Signed-off-by: Stefan Bader <[email protected]>
1 parent 5f36ae9 commit 9846918

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

debian/scripts/misc/kconfig/annotations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def save(self, fname: str):
446446

447447
# Write out the policy (and note) line(s)
448448
val = dict(sorted(new_val["policy"].items()))
449-
line = f"{conf : <47} policy<{val}>"
449+
line = f"{conf: <47} policy<{val}>"
450450
if "note" in new_val:
451451
val = new_val["note"]
452452
if new_val.get("oneline", False):
@@ -455,7 +455,7 @@ def save(self, fname: str):
455455
else:
456456
# Separate policy and note lines,
457457
# followed by an empty line
458-
line += f"\n{conf : <47} note<{val}>\n"
458+
line += f"\n{conf: <47} note<{val}>\n"
459459
elif not marker:
460460
# Write out a marker indicating the start of annotations
461461
# without notes

0 commit comments

Comments
 (0)