Skip to content

Commit bccf650

Browse files
Fixed a syntax error with python logging.
1 parent cecc74d commit bccf650

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def parse_args():
165165
exit(1)
166166

167167
def upload_asset(release, filepath, filename, release_version, kv_account_id, namespace_id, kv_api_token):
168-
logging.info(f"Uploading asset: {filename}")
168+
logging.info("Uploading asset: %s", filename)
169169
release.upload_asset(filepath, name=filename)
170170

171171
# check and extract if the file is a tar and gzipped file (as is the case with the macos builds)

0 commit comments

Comments
 (0)