From 27d4d76769ea85e32f1071da18f3b42c1e5d56ef Mon Sep 17 00:00:00 2001
From: Simon Willnauer <simonw@apache.org>
Date: Mon, 14 Apr 2014 22:22:51 +0200
Subject: [PATCH] [BUILD] remove leftover print statement

---
 dev-tools/build_release.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-tools/build_release.py b/dev-tools/build_release.py
index 0771ac9f348..a36d5c01d66 100644
--- a/dev-tools/build_release.py
+++ b/dev-tools/build_release.py
@@ -264,7 +264,6 @@ def ensure_no_open_tickets(version):
   try:
     log('Checking for open tickets on Github for version %s' % version)
     log('Check if node is available')
-    print( 'https://api.github.com:443/repos/elasticsearch/elasticsearch/issues?state=open&labels=%s' % version)
     conn.request('GET', '/repos/elasticsearch/elasticsearch/issues?state=open&labels=%s' % version, headers= {'User-Agent' : 'Elasticsearch version checker'})
     res = conn.getresponse()
     if res.status == 200: