fix: use print() function in both Python 2 and Python 3 (#18395)

Legacy print statements are syntax errors in Python 3 but print() function works as expected in both Python 2 and Python 3.

Old style exceptions are syntax errors in Python 3 but new style exceptions work as expected in both Python 2 and Python 3.
This commit is contained in:
cclauss 2019-06-15 19:26:09 +02:00 committed by Shelley Vohr
parent 7d0a93858d
commit 1d6e5e6e70
18 changed files with 62 additions and 894 deletions

View file

@ -1,5 +1,6 @@
#!/usr/bin/env python
from __future__ import print_function
import argparse
import datetime
import errno
@ -154,7 +155,7 @@ def upload_electron(release, file_path, args):
key_prefix, [file_path])
upload_sha256_checksum(args.version, file_path, key_prefix)
s3url = 'https://gh-contractor-zcbenz.s3.amazonaws.com'
print '{0} uploaded to {1}/{2}/{0}'.format(filename, s3url, key_prefix)
print('{0} uploaded to {1}/{2}/{0}'.format(filename, s3url, key_prefix))
return
# Upload the file.
@ -165,8 +166,8 @@ def upload_electron(release, file_path, args):
def upload_io_to_github(release, filename, filepath, version):
print 'Uploading %s to Github' % \
(filename)
print('Uploading %s to Github' % \
(filename))
script_path = os.path.join(SOURCE_ROOT, 'script', 'upload-to-github.js')
execute(['node', script_path, filepath, filename, str(release['id']),
version])