chiark / gitweb /
fix PEP9 E713 test for membership should be 'not in'
[fdroidserver.git] / fdroidserver / signindex.py
index 82f2216acf501a8cb791e4df03ae4c4100bcf9fe..1d0c320067714f1f1c25d8cc79ba75e075f1d222 100644 (file)
@@ -40,7 +40,7 @@ def main():
 
     config = common.read_config(options)
 
-    if not 'jarsigner' in config:
+    if 'jarsigner' not in config:
         logging.critical('Java jarsigner not found! Install in standard location or set java_paths!')
         sys.exit(1)