1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Fix PEP8 E225

This commit is contained in:
Daniel Martí 2015-06-03 18:05:17 +02:00
parent beb17ad84a
commit 1b2354858b

View File

@ -880,7 +880,7 @@ def retrieve_string(app_dir, string, xmlfiles=None):
if not os.path.isfile(path):
continue
xml = parse_xml(path)
element = xml.find('string[@name="'+name+'"]')
element = xml.find('string[@name="' + name + '"]')
if element is not None:
return retrieve_string(app_dir, element.text, xmlfiles)