Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-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 A1269100FF for ; Thu, 2 Jan 2014 16:17:24 +0000 (UTC) Received: (qmail 64286 invoked by uid 500); 2 Jan 2014 16:17:07 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 64106 invoked by uid 500); 2 Jan 2014 16:16:58 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 63811 invoked by uid 99); 2 Jan 2014 16:16:52 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Jan 2014 16:16:52 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id AF76C911E65; Thu, 2 Jan 2014 16:16:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tvansteenburgh@apache.org To: allura-commits@incubator.apache.org Date: Thu, 02 Jan 2014 16:17:03 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [13/17] git commit: [#6388] fix capitalization in module lookup [#6388] fix capitalization in module lookup Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/1bb460c6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/1bb460c6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/1bb460c6 Branch: refs/heads/master Commit: 1bb460c6e7e4329ee0c698f04b28758231136d7b Parents: 84d6afc Author: Dave Brondsema Authored: Thu Jan 2 15:50:57 2014 +0000 Committer: Tim Van Steenburgh Committed: Thu Jan 2 16:16:21 2014 +0000 ---------------------------------------------------------------------- AlluraTest/alluratest/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/1bb460c6/AlluraTest/alluratest/controller.py ---------------------------------------------------------------------- diff --git a/AlluraTest/alluratest/controller.py b/AlluraTest/alluratest/controller.py index 62cc03c..0017c48 100644 --- a/AlluraTest/alluratest/controller.py +++ b/AlluraTest/alluratest/controller.py @@ -57,7 +57,7 @@ def get_config_file(config=None): try: conf_dir = tg.config.here except AttributeError: - conf_dir = pkg_resources.resource_filename('Allura', '..') + conf_dir = pkg_resources.resource_filename('allura', '..') return os.path.join(conf_dir, config)