From fae67378415148a53e5a9ca562e63abb0531468c Mon Sep 17 00:00:00 2001 From: pxgamer Date: Fri, 24 Aug 2018 10:50:41 +0100 Subject: [PATCH] scripts: add python3 compatibility for the bot --- scripts/send_to_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/send_to_bot.py b/scripts/send_to_bot.py index dc8f5047f1..eb17d24466 100644 --- a/scripts/send_to_bot.py +++ b/scripts/send_to_bot.py @@ -13,7 +13,7 @@ def post_comment(pr_id, comment_body): # Making the request f = urllib2.urlopen(req) if f.getcode() != 200: - print f.read() + print(f.read()) # Get the environment variables