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

git commit: [#6388] fix capitalization in module lookup

Updated Branches:
  refs/heads/db/6388 20b893099 -> b7bb0a0e6


[#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/b7bb0a0e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/b7bb0a0e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/b7bb0a0e

Branch: refs/heads/db/6388
Commit: b7bb0a0e6a031478ccd900dba758af5228ed1497
Parents: 20b8930
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Thu Jan 2 15:50:57 2014 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Thu Jan 2 15:50:57 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/b7bb0a0e/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)