From 9a8d7117e3042042205719c699259c82409a9b49 Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Fri, 9 Nov 2018 22:47:27 +0000 Subject: [PATCH] Also strip duplicate \n from the below. --- debian/changelog | 1 + live-build/snap-seed-parse.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index fb844992..3ca4212f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ livecd-rootfs (2.545) disco; urgency=medium [ Dimitri John Ledkov ] * Do not mount result, on top of lowerdir, appears to fail in disco. Should unblock building server-live images in disco. + * Also strip duplicate \n from the below. [ Cody Shepherd ] * Fix snap-seed-parse to take filename argument instead of printing to diff --git a/live-build/snap-seed-parse.py b/live-build/snap-seed-parse.py index d9314170..0e47231c 100755 --- a/live-build/snap-seed-parse.py +++ b/live-build/snap-seed-parse.py @@ -16,7 +16,7 @@ import yaml def log(msg): - print("snap-seed-parse: {}\n".format(msg)) + print("snap-seed-parse: {}".format(msg)) log("Parsing seed.yaml")