mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
fix PEP8 E128 continuation line under-indented for visual indent
This commit is contained in:
parent
0f0ccdb1e1
commit
2f3022ff65
1 changed files with 4 additions and 4 deletions
|
@ -134,8 +134,8 @@ def check_tags(app, pattern):
|
||||||
|
|
||||||
# Only process tags where the manifest exists...
|
# Only process tags where the manifest exists...
|
||||||
paths = common.manifest_paths(build_dir, flavour)
|
paths = common.manifest_paths(build_dir, flavour)
|
||||||
version, vercode, package = common.parse_androidmanifests(paths,
|
version, vercode, package = \
|
||||||
app['Update Check Ignore'])
|
common.parse_androidmanifests(paths, app['Update Check Ignore'])
|
||||||
if not package or package != appid or not version or not vercode:
|
if not package or package != appid or not version or not vercode:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
@ -210,8 +210,8 @@ def check_repomanifest(app, branch=None):
|
||||||
|
|
||||||
paths = common.manifest_paths(build_dir, flavour)
|
paths = common.manifest_paths(build_dir, flavour)
|
||||||
|
|
||||||
version, vercode, package = common.parse_androidmanifests(paths,
|
version, vercode, package = \
|
||||||
app['Update Check Ignore'])
|
common.parse_androidmanifests(paths, app['Update Check Ignore'])
|
||||||
if not package:
|
if not package:
|
||||||
return (None, "Couldn't find package ID")
|
return (None, "Couldn't find package ID")
|
||||||
if package != appid:
|
if package != appid:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue