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

Commit

Permalink
Merge pull request #69 from mahee96/patch-1
Browse files Browse the repository at this point in the history
Corrected to use python3 syntax for print
  • Loading branch information
dingram authored Apr 13, 2023
2 parents f331cd6 + fef293c commit f4e9a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v3/python/basic_list_apks_service_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def main():
editId=edit_id, packageName=package_name).execute()

for apk in apks_result['apks']:
print 'versionCode: %s, binary.sha1: %s' % (
apk['versionCode'], apk['binary']['sha1'])
print('versionCode: %s, binary.sha1: %s' % (
apk['versionCode'], apk['binary']['sha1']))

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

0 comments on commit f4e9a76

Please sign in to comment.