Strip Auto Name: name to avoid extra spacing errors

This commit is contained in:
Daniel Martí 2014-02-07 21:08:04 +01:00
parent d661b7a877
commit 1f3653af15

View file

@ -619,7 +619,7 @@ def fetch_real_name(app_dir, flavour):
if app_found: if app_found:
matches = name_search(line) matches = name_search(line)
if matches: if matches:
return retrieve_string(xml_dir, matches.group(1)) return retrieve_string(xml_dir, matches.group(1)).strip()
return '' return ''
# Retrieve the version name # Retrieve the version name