From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH] location.in: strip trailing whitespaces in database description while dumping
Date: Mon, 22 Jun 2020 17:55:17 +0000 [thread overview]
Message-ID: <f05d57a0-4a9f-8d46-68fc-1aefeff5e4ea@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 527 bytes --]
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/python/location.in b/src/python/location.in
index d37294d..a804804 100644
--- a/src/python/location.in
+++ b/src/python/location.in
@@ -321,7 +321,8 @@ class CLI(object):
if db.description:
for line in db.description.splitlines():
- f.write("# %s\n" % line)
+ line = "# %s" % line
+ f.write("%s\n" % line.rstrip())
f.write("#\n")
--
2.26.2
reply other threads:[~2020-06-22 17:55 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f05d57a0-4a9f-8d46-68fc-1aefeff5e4ea@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox