You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2014/01/02 17:17:03 UTC

[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 <db...@slashdotmedia.com>
Authored: Thu Jan 2 15:50:57 2014 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
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)