From 0ced3bfb095444fcff5b6bdaab6dd5ce27a4d14a Mon Sep 17 00:00:00 2001 From: Vittorio Alfieri Date: Mon, 8 May 2023 23:27:07 +0200 Subject: [PATCH] Fixed print on py script. --- tools/upload-binaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/upload-binaries.py b/tools/upload-binaries.py index a3d5f3c5a..c90ed380b 100644 --- a/tools/upload-binaries.py +++ b/tools/upload-binaries.py @@ -43,7 +43,7 @@ def main(): asset_url = t.expand(name = options.remote) r = requests.post(asset_url, headers = headers, data = open(options.local, 'rb').read(),verify=False) s = 'File ' + options.local + ' has been uploaded as ' + options.remote + '.' - print s + print(s) else: parser.print_help() return