From 42018bab81617212ae7c9b22c20d9ed6156f1450 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Wed, 16 May 2012 12:04:32 -0700 Subject: [PATCH] Added full URL to output. --- tools/bugs-wiki/search-bugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bugs-wiki/search-bugs.py b/tools/bugs-wiki/search-bugs.py index 79c7841abac..074401fa511 100755 --- a/tools/bugs-wiki/search-bugs.py +++ b/tools/bugs-wiki/search-bugs.py @@ -24,7 +24,7 @@ def doit(term): if len(issues) == 0: return for issue in issues: - print "Found %s in %s" % (term, issue['key']) + print "Found %s in http://%s/browse/%s" % (term, host, issue['key']) for term in sys.stdin.readlines():