From 2f3022ff65fc47eba1b86320ef3ac35d397cf8e7 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 29 May 2014 13:10:28 -0400 Subject: [PATCH] fix PEP8 E128 continuation line under-indented for visual indent --- fdroidserver/checkupdates.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index 6b4831d4..c9405ad3 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -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: -- 2.30.2