Return-Path: X-Original-To: apmail-yetus-commits-archive@minotaur.apache.org Delivered-To: apmail-yetus-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0B2A118C22 for ; Mon, 14 Dec 2015 22:45:51 +0000 (UTC) Received: (qmail 41736 invoked by uid 500); 14 Dec 2015 22:45:51 -0000 Delivered-To: apmail-yetus-commits-archive@yetus.apache.org Received: (qmail 41715 invoked by uid 500); 14 Dec 2015 22:45:50 -0000 Mailing-List: contact commits-help@yetus.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@yetus.apache.org Delivered-To: mailing list commits@yetus.apache.org Received: (qmail 41706 invoked by uid 99); 14 Dec 2015 22:45:50 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Dec 2015 22:45:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B0611E095F; Mon, 14 Dec 2015 22:45:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sekikn@apache.org To: commits@yetus.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: yetus git commit: YETUS-232. releasedocmaker with range option fails if project name is specified in lower case Date: Mon, 14 Dec 2015 22:45:50 +0000 (UTC) Repository: yetus Updated Branches: refs/heads/master 594336042 -> 18ed90545 YETUS-232. releasedocmaker with range option fails if project name is specified in lower case Signed-off-by: Allen Wittenauer Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/18ed9054 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/18ed9054 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/18ed9054 Branch: refs/heads/master Commit: 18ed90545d521dbca6b5149e5d3113b39b7604f5 Parents: 5943360 Author: Kengo Seki Authored: Mon Dec 14 10:45:16 2015 +0900 Committer: Kengo Seki Committed: Tue Dec 15 07:45:02 2015 +0900 ---------------------------------------------------------------------- release-doc-maker/releasedocmaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/18ed9054/release-doc-maker/releasedocmaker.py ---------------------------------------------------------------------- diff --git a/release-doc-maker/releasedocmaker.py b/release-doc-maker/releasedocmaker.py index bfd8989..23779ea 100755 --- a/release-doc-maker/releasedocmaker.py +++ b/release-doc-maker/releasedocmaker.py @@ -153,7 +153,7 @@ class GetVersions(object): print "Looking for %s through %s"%(versions[0], versions[-1]) newversions = set() for project in projects: - url = "https://issues.apache.org/jira/rest/api/2/project/%s/versions" % project + url = "https://issues.apache.org/jira/rest/api/2/project/%s/versions" % project.upper() resp = urllib2.urlopen(url) datum = json.loads(resp.read()) for data in datum: