mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-20 13:50:12 +01:00
Make pre-commit hook pass after python3 switch
This commit is contained in:
parent
49ac25270e
commit
ee9a296b64
@ -102,8 +102,8 @@ def main():
|
||||
default_sdk_path = '/opt/android-sdk'
|
||||
while not options.no_prompt:
|
||||
try:
|
||||
s = raw_input('Enter the path to the Android SDK ('
|
||||
+ default_sdk_path + ') here:\n> ')
|
||||
s = input('Enter the path to the Android SDK ('
|
||||
+ default_sdk_path + ') here:\n> ')
|
||||
except KeyboardInterrupt:
|
||||
print('')
|
||||
sys.exit(1)
|
||||
|
@ -295,12 +295,12 @@ def main():
|
||||
sftp = ssh.open_sftp()
|
||||
if os.path.basename(remotepath) \
|
||||
not in sftp.listdir(os.path.dirname(remotepath)):
|
||||
sftp.mkdir(remotepath, mode=0755)
|
||||
sftp.mkdir(remotepath, mode=0o755)
|
||||
for repo_section in repo_sections:
|
||||
repo_path = os.path.join(remotepath, repo_section)
|
||||
if os.path.basename(repo_path) \
|
||||
not in sftp.listdir(remotepath):
|
||||
sftp.mkdir(repo_path, mode=0755)
|
||||
sftp.mkdir(repo_path, mode=0o755)
|
||||
sftp.close()
|
||||
ssh.close()
|
||||
elif options.command == 'update':
|
||||
|
@ -1337,14 +1337,15 @@ def main():
|
||||
# Generate latest apps data for widget
|
||||
if os.path.exists(os.path.join('stats', 'latestapps.txt')):
|
||||
data = ''
|
||||
for line in file(os.path.join('stats', 'latestapps.txt')):
|
||||
appid = line.rstrip()
|
||||
data += appid + "\t"
|
||||
app = apps[appid]
|
||||
data += app.Name + "\t"
|
||||
if app.icon is not None:
|
||||
data += app.icon + "\t"
|
||||
data += app.License + "\n"
|
||||
with open(os.path.join('stats', 'latestapps.txt'), 'r') as f:
|
||||
for line in f:
|
||||
appid = line.rstrip()
|
||||
data += appid + "\t"
|
||||
app = apps[appid]
|
||||
data += app.Name + "\t"
|
||||
if app.icon is not None:
|
||||
data += app.icon + "\t"
|
||||
data += app.License + "\n"
|
||||
with open(os.path.join(repodirs[0], 'latestapps.dat'), 'w') as f:
|
||||
f.write(data)
|
||||
|
||||
|
@ -37,7 +37,7 @@ class BuildTest(unittest.TestCase):
|
||||
break
|
||||
return True
|
||||
else:
|
||||
print 'no build-tools found: ' + build_tools
|
||||
print('no build-tools found: ' + build_tools)
|
||||
return False
|
||||
|
||||
def _find_all(self):
|
||||
|
@ -37,7 +37,7 @@ class CommonTest(unittest.TestCase):
|
||||
break
|
||||
return True
|
||||
else:
|
||||
print 'no build-tools found: ' + build_tools
|
||||
print('no build-tools found: ' + build_tools)
|
||||
return False
|
||||
|
||||
def _find_all(self):
|
||||
@ -61,7 +61,7 @@ class CommonTest(unittest.TestCase):
|
||||
if self._set_build_tools():
|
||||
self._find_all()
|
||||
else:
|
||||
print 'no build-tools found: ' + build_tools
|
||||
print('no build-tools found: ' + build_tools)
|
||||
|
||||
def testIsApkDebuggable(self):
|
||||
config = dict()
|
||||
|
@ -32,7 +32,7 @@ class InstallTest(unittest.TestCase):
|
||||
devices = fdroidserver.install.devices()
|
||||
self.assertIsInstance(devices, list, 'install.devices() did not return a list!')
|
||||
for device in devices:
|
||||
self.assertIsInstance(device, basestring)
|
||||
self.assertIsInstance(device, str)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
@ -59,7 +59,7 @@ class UpdateTest(unittest.TestCase):
|
||||
self.assertEquals(sig.decode('hex'), pysig.decode('hex'),
|
||||
"the length of the two sigs are different!")
|
||||
except TypeError as e:
|
||||
print e
|
||||
print(e)
|
||||
self.assertTrue(False, 'TypeError!')
|
||||
|
||||
def testBadGetsig(self):
|
||||
|
Loading…
Reference in New Issue
Block a user