1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

fix PEP8 E128 continuation line under-indented for visual indent

This commit is contained in:
Hans-Christoph Steiner 2014-05-29 13:10:28 -04:00
parent 0f0ccdb1e1
commit 2f3022ff65

View File

@ -134,8 +134,8 @@ def check_tags(app, pattern):
# Only process tags where the manifest exists...
paths = common.manifest_paths(build_dir, flavour)
version, vercode, package = common.parse_androidmanifests(paths,
app['Update Check Ignore'])
version, vercode, package = \
common.parse_androidmanifests(paths, app['Update Check Ignore'])
if not package or package != appid or not version or not vercode:
continue
@ -210,8 +210,8 @@ def check_repomanifest(app, branch=None):
paths = common.manifest_paths(build_dir, flavour)
version, vercode, package = common.parse_androidmanifests(paths,
app['Update Check Ignore'])
version, vercode, package = \
common.parse_androidmanifests(paths, app['Update Check Ignore'])
if not package:
return (None, "Couldn't find package ID")
if package != appid: