Skip to content
This repository was archived by the owner on Jun 17, 2024. It is now read-only.

Commit f4e9a76

Browse files
authored
Merge pull request #69 from mahee96/patch-1
Corrected to use python3 syntax for print
2 parents f331cd6 + fef293c commit f4e9a76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

v3/python/basic_list_apks_service_account.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ def main():
6767
editId=edit_id, packageName=package_name).execute()
6868

6969
for apk in apks_result['apks']:
70-
print 'versionCode: %s, binary.sha1: %s' % (
71-
apk['versionCode'], apk['binary']['sha1'])
70+
print('versionCode: %s, binary.sha1: %s' % (
71+
apk['versionCode'], apk['binary']['sha1']))
7272

7373
except client.AccessTokenRefreshError:
7474
print ('The credentials have been revoked or expired, please re-run the '

0 commit comments

Comments
 (0)