mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +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:
|
class vcs:
|
||||||
|
|
||||||
def __init__(self, remote, local):
|
def __init__(self, remote, local):
|
||||||
|
|
||||||
# svn, git-svn and bzr may require auth
|
# svn, git-svn and bzr may require auth
|
||||||
|
@ -439,8 +440,7 @@ class vcs:
|
||||||
writeback = False
|
writeback = False
|
||||||
else:
|
else:
|
||||||
deleterepo = True
|
deleterepo = True
|
||||||
logging.info(
|
logging.info("Repository details for %s changed - deleting" % (
|
||||||
"Repository details for %s changed - deleting" % (
|
|
||||||
self.local))
|
self.local))
|
||||||
else:
|
else:
|
||||||
deleterepo = True
|
deleterepo = True
|
||||||
|
@ -592,7 +592,8 @@ class vcs_git(vcs):
|
||||||
def latesttags(self, alltags, number):
|
def latesttags(self, alltags, number):
|
||||||
self.checkrepo()
|
self.checkrepo()
|
||||||
p = FDroidPopen(['echo "' + '\n'.join(alltags) + '" | '
|
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}\''],
|
+ 'sort -n | awk \'{print $2}\''],
|
||||||
cwd=self.local, shell=True, output=False)
|
cwd=self.local, shell=True, output=False)
|
||||||
return p.output.splitlines()[-number:]
|
return p.output.splitlines()[-number:]
|
||||||
|
@ -1005,6 +1006,7 @@ def parse_androidmanifests(paths, ignoreversions=None):
|
||||||
|
|
||||||
|
|
||||||
class FDroidException(Exception):
|
class FDroidException(Exception):
|
||||||
|
|
||||||
def __init__(self, value, detail=None):
|
def __init__(self, value, detail=None):
|
||||||
self.value = value
|
self.value = value
|
||||||
self.detail = detail
|
self.detail = detail
|
||||||
|
@ -1610,6 +1612,7 @@ def isApkDebuggable(apkfile, config):
|
||||||
|
|
||||||
|
|
||||||
class AsynchronousFileReader(threading.Thread):
|
class AsynchronousFileReader(threading.Thread):
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Helper class to implement asynchronous reading of a file
|
Helper class to implement asynchronous reading of a file
|
||||||
in a separate thread. Pushes read lines on a queue to
|
in a separate thread. Pushes read lines on a queue to
|
||||||
|
|
|
@ -29,6 +29,7 @@ srclibs = None
|
||||||
|
|
||||||
|
|
||||||
class MetaDataException(Exception):
|
class MetaDataException(Exception):
|
||||||
|
|
||||||
def __init__(self, value):
|
def __init__(self, value):
|
||||||
self.value = value
|
self.value = value
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue