chiark / gitweb /
PEP8 fix E225 missing whitespace around operator
[fdroidserver.git] / fdroidserver / scanner.py
index 30aaddf8143a6073d4445394e4b494042cee61d5..e41e557057a8da4d9d5a71f5095504fedeed6819 100644 (file)
@@ -211,7 +211,7 @@ def scan_source(build_dir, root_dir, build):
                 for i, line in enumerate(lines):
                     if is_used_by_gradle(line):
                         for name in suspects_found(line):
-                            count += handleproblem('usual supect \'%s\' at line %d' % (name, i+1), fd, fp)
+                            count += handleproblem('usual supect \'%s\' at line %d' % (name, i + 1), fd, fp)
                 noncomment_lines = [l for l in lines if not common.gradle_comment.match(l)]
                 joined = re.sub(r'[\n\r\s]+', ' ', ' '.join(noncomment_lines))
                 for m in gradle_mavenrepo.finditer(joined):