* [PATCH] location.in: strip trailing whitespaces in database description while dumping
@ 2020-06-22 17:55 Peter Müller
0 siblings, 0 replies; only message in thread
From: Peter Müller @ 2020-06-22 17:55 UTC (permalink / raw)
To: location
[-- 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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-06-22 17:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-22 17:55 [PATCH] location.in: strip trailing whitespaces in database description while dumping Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox