chiark / gitweb /
A few more PEP8 fixes
authorDaniel Martí <mvdan@mvdan.cc>
Wed, 7 May 2014 14:13:22 +0000 (16:13 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Wed, 7 May 2014 14:17:46 +0000 (16:17 +0200)
fdroidserver/server.py
fdroidserver/update.py
makebuildserver

index efec939d2292e1ba13de0274df77d897f09f7cb5..3bf5e5814bd90a31f5e745cbdf91e6e3626b8632 100644 (file)
@@ -67,7 +67,7 @@ def update_awsbucket(repo_section):
             upload = False
             file_to_upload = os.path.join(root, name)
             object_name = 'fdroid/' + os.path.relpath(file_to_upload, os.getcwd())
-            if not object_name in objs:
+            if object_name not in objs:
                 upload = True
             else:
                 obj = objs.pop(object_name)
index a4500381afa2ac93f278c10666e257c5e0cfb5f6..4f9f1c82361a8937024f508fffa6590e6e1b4c02 100644 (file)
@@ -251,7 +251,7 @@ def update_wiki(apps, apks):
                 page.delete('No longer published')
         for pagename, text in genp.items():
             logging.debug("Checking " + pagename)
-            if not pagename in existingpages:
+            if pagename not in existingpages:
                 logging.debug("Creating page " + pagename)
                 try:
                     newpage = site.Pages[pagename]
@@ -427,15 +427,15 @@ def scan_apks(apps, apkcache, repodir, knownapks):
                     thisinfo['permissions'].append(perm)
                 elif line.startswith("uses-feature:"):
                     perm = re.match(string_pat, line).group(1)
-                    #Filter out this, it's only added with the latest SDK tools and
-                    #causes problems for lots of apps.
+                    # Filter out this, it's only added with the latest SDK tools and
+                    # causes problems for lots of apps.
                     if perm != "android.hardware.screen.portrait" \
                             and perm != "android.hardware.screen.landscape":
                         if perm.startswith("android.feature."):
                             perm = perm[16:]
                         thisinfo['features'].append(perm)
 
-            if not 'sdkversion' in thisinfo:
+            if 'sdkversion' not in thisinfo:
                 logging.warn("no SDK version information found")
                 thisinfo['sdkversion'] = 0
 
@@ -768,7 +768,7 @@ def make_index(apps, apks, repodir, archive, categories):
             if 'srcname' in apk:
                 addElement('srcname', apk['srcname'], doc, apkel)
             for hash_type in ['sha256']:
-                if not hash_type in apk:
+                if hash_type not in apk:
                     continue
                 hashel = doc.createElement("hash")
                 hashel.setAttribute("type", hash_type)
@@ -805,7 +805,7 @@ def make_index(apps, apks, repodir, archive, categories):
         logging.info("Creating signed index with this key:")
         logging.info("SHA256: %s" % repo_pubkey_fingerprint)
 
-        #Create a jar of the index...
+        # Create a jar of the index...
         p = FDroidPopen(['jar', 'cf', 'index.jar', 'index.xml'], cwd=repodir)
         if p.returncode != 0:
             logging.critical("Failed to create jar file")
index 9cb477f61fdeb8f3a5255ccb40d240dcab34b453..a80500f63ff31ed60c4e2e7208f62e67dbc39d30 100755 (executable)
@@ -7,6 +7,7 @@ import time
 import hashlib
 from optparse import OptionParser
 
+
 def vagrant(params, cwd=None, printout=False):
     """Run vagrant.
 
@@ -18,7 +19,7 @@ def vagrant(params, cwd=None, printout=False):
                is the stdout (and stderr) from vagrant
     """
     p = subprocess.Popen(['vagrant'] + params, cwd=cwd,
-            stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+                         stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
     out = ''
     if printout:
         while True:
@@ -37,9 +38,9 @@ serverdir = 'buildserver'
 
 parser = OptionParser()
 parser.add_option("-v", "--verbose", action="store_true", default=False,
-                      help="Spew out even more information than normal")
+                  help="Spew out even more information than normal")
 parser.add_option("-c", "--clean", action="store_true", default=False,
-                      help="Build from scratch, rather than attempting to update the existing server")
+                  help="Build from scratch, rather than attempting to update the existing server")
 options, args = parser.parse_args()
 
 config = {}
@@ -106,6 +107,7 @@ else:
      '606aadf815ae28cc7b0154996247c70d609f111b14e44bcbcd6cad4c87fefb6f')])
 wanted = []
 
+
 def sha256_for_file(path):
     with open(path, 'r') as f:
         s = hashlib.sha256()
@@ -234,4 +236,3 @@ vagrant(['box', 'add', 'buildserver', boxfile, '-f'],
         printout=options.verbose)
 
 os.remove(boxfile)
-