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 #49 from NilLlisterri/patch-1
Browse files Browse the repository at this point in the history
Fix "Invalid value for versionCodes: [XXX]"
  • Loading branch information
nlativy authored Feb 4, 2019
2 parents 1e7d129 + 357e081 commit 99b1a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v3/python/basic_upload_apks.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def main(argv):
packageName=package_name,
body={u'releases': [{
u'name': u'My first API release',
u'versionCodes': [str([apk_response['versionCode']])],
u'versionCodes': [str(apk_response['versionCode'])],
u'status': u'completed',
}]}).execute()

Expand Down

0 comments on commit 99b1a64

Please sign in to comment.