chiark / gitweb /
fix PEP8 E128 continuation line under-indented for visual indent
authorHans-Christoph Steiner <hans@eds.org>
Thu, 29 May 2014 17:10:28 +0000 (13:10 -0400)
committerHans-Christoph Steiner <hans@eds.org>
Thu, 29 May 2014 17:10:28 +0000 (13:10 -0400)
fdroidserver/checkupdates.py

index 6b4831d47da4dbfb42a571abc6d54afd11d56b14..c9405ad32396493734f85c3cbaefc5f5a756ea59 100644 (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: