mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
Apply some autopep8-python2 suggestions
This commit is contained in:
parent
e39602586f
commit
14f654fabc
8 changed files with 39 additions and 35 deletions
|
@ -391,6 +391,7 @@ def getsrclibvcs(name):
|
|||
|
||||
|
||||
class vcs:
|
||||
|
||||
def __init__(self, remote, local):
|
||||
|
||||
# svn, git-svn and bzr may require auth
|
||||
|
@ -439,8 +440,7 @@ class vcs:
|
|||
writeback = False
|
||||
else:
|
||||
deleterepo = True
|
||||
logging.info(
|
||||
"Repository details for %s changed - deleting" % (
|
||||
logging.info("Repository details for %s changed - deleting" % (
|
||||
self.local))
|
||||
else:
|
||||
deleterepo = True
|
||||
|
@ -592,7 +592,8 @@ class vcs_git(vcs):
|
|||
def latesttags(self, alltags, number):
|
||||
self.checkrepo()
|
||||
p = FDroidPopen(['echo "' + '\n'.join(alltags) + '" | '
|
||||
+ 'xargs -I@ git log --format=format:"%at @%n" -1 @ | '
|
||||
+
|
||||
'xargs -I@ git log --format=format:"%at @%n" -1 @ | '
|
||||
+ 'sort -n | awk \'{print $2}\''],
|
||||
cwd=self.local, shell=True, output=False)
|
||||
return p.output.splitlines()[-number:]
|
||||
|
@ -1005,6 +1006,7 @@ def parse_androidmanifests(paths, ignoreversions=None):
|
|||
|
||||
|
||||
class FDroidException(Exception):
|
||||
|
||||
def __init__(self, value, detail=None):
|
||||
self.value = value
|
||||
self.detail = detail
|
||||
|
@ -1610,6 +1612,7 @@ def isApkDebuggable(apkfile, config):
|
|||
|
||||
|
||||
class AsynchronousFileReader(threading.Thread):
|
||||
|
||||
'''
|
||||
Helper class to implement asynchronous reading of a file
|
||||
in a separate thread. Pushes read lines on a queue to
|
||||
|
|
|
@ -29,6 +29,7 @@ srclibs = None
|
|||
|
||||
|
||||
class MetaDataException(Exception):
|
||||
|
||||
def __init__(self, value):
|
||||
self.value = value
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue