summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build-gluster-org/scripts/close-old-reviews.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-gluster-org/scripts/close-old-reviews.py b/build-gluster-org/scripts/close-old-reviews.py
index cf131e1..efc69e1 100644
--- a/build-gluster-org/scripts/close-old-reviews.py
+++ b/build-gluster-org/scripts/close-old-reviews.py
@@ -38,8 +38,8 @@ def close_reviews(change_ids):
}
username = os.environ.get('HTTP_USERNAME')
password = os.environ.get('HTTP_PASSWORD')
- print("Attempting to close review: ", "https://review.gluster.org/",
- change['_number'],
+ print("Attempting to close review: ", "https://review.gluster.org/"
+ + format(change['_number']),
" -- Title: ",
change['subject'])
response = requests.post(url, auth=(username, password), json=data)