From bccf650165eaf91556ed5829482d0f38e782454f Mon Sep 17 00:00:00 2001 From: Sudarsan Reddy Date: Tue, 27 Jul 2021 09:33:41 +0100 Subject: [PATCH] Fixed a syntax error with python logging. --- github_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_release.py b/github_release.py index 89f01b28..96aa8b71 100755 --- a/github_release.py +++ b/github_release.py @@ -165,7 +165,7 @@ def parse_args(): exit(1) def upload_asset(release, filepath, filename, release_version, kv_account_id, namespace_id, kv_api_token): - logging.info(f"Uploading asset: {filename}") + logging.info("Uploading asset: %s", filename) release.upload_asset(filepath, name=filename) # check and extract if the file is a tar and gzipped file (as is the case with the macos builds)