Gentoo Archives: gentoo-commits

From: Vikraman Choudhury <vikraman.choudhury@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoostats:master commit in: client/gentoostats/
Date: Mon, 01 Aug 2011 23:05:51
Message-Id: 52a51538c248296d5f14fcab8f975e67c3f49ee8.vikraman@gentoo
1 commit: 52a51538c248296d5f14fcab8f975e67c3f49ee8
2 Author: Vikraman Choudhury <vikraman.choudhury <AT> gmail <DOT> com>
3 AuthorDate: Mon Aug 1 23:05:19 2011 +0000
4 Commit: Vikraman Choudhury <vikraman.choudhury <AT> gmail <DOT> com>
5 CommitDate: Mon Aug 1 23:05:19 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoostats.git;a=commit;h=52a51538
7
8 remove debugging print from search.py
9
10 ---
11 client/gentoostats/search.py | 2 --
12 1 files changed, 0 insertions(+), 2 deletions(-)
13
14 diff --git a/client/gentoostats/search.py b/client/gentoostats/search.py
15 index 165733e..4bb040b 100644
16 --- a/client/gentoostats/search.py
17 +++ b/client/gentoostats/search.py
18 @@ -29,8 +29,6 @@ def search(args):
19 url_extra += ('?', '&')[bool(url_extra)] + 'min_hosts=' + str(args.min_hosts) if args.min_hosts else ''
20 url_extra += ('?', '&')[bool(url_extra)] + 'max_hosts=' + str(args.max_hosts) if args.max_hosts else ''
21
22 - print args.server + args.url + url_base + url_extra
23 -
24 get_data = utils.GET(server = args.server, url = args.url + url_base + url_extra, headers = utils.headers)
25 data = utils.deserialize(get_data)