Signed-off-by: Peter Müller peter.mueller@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")