From 1f3653af156fa06bd918e0bf33a2a66b70fee9c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Fri, 7 Feb 2014 21:08:04 +0100 Subject: [PATCH] Strip Auto Name: name to avoid extra spacing errors --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 40d7060a..7533149e 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -619,7 +619,7 @@ def fetch_real_name(app_dir, flavour): if app_found: matches = name_search(line) if matches: - return retrieve_string(xml_dir, matches.group(1)) + return retrieve_string(xml_dir, matches.group(1)).strip() return '' # Retrieve the version name -- 2.30.2