1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +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): if not os.path.isfile(path):
continue continue
xml = parse_xml(path) xml = parse_xml(path)
element = xml.find('string[@name="'+name+'"]') element = xml.find('string[@name="' + name + '"]')
if element is not None: if element is not None:
return retrieve_string(app_dir, element.text, xmlfiles) return retrieve_string(app_dir, element.text, xmlfiles)