# HG changeset patch # User Marcin Kuzminski # Date 2011-07-02 14:40:27 # Node ID 90eebc0f040c718aa772d4e5b2ded4f625189567 # Parent ff7f5922e4e081ec6c6f9e08724fe228612c77d5 Fixed whoosh index location bug diff --git a/rhodecode/lib/utils.py b/rhodecode/lib/utils.py --- a/rhodecode/lib/utils.py +++ b/rhodecode/lib/utils.py @@ -471,7 +471,7 @@ def create_test_index(repo_location, con repo_location = repo_location - index_location = os.path.join(config['app_conf']['index_dir'], 'index') + index_location = os.path.join(config['app_conf']['index_dir']) if not os.path.exists(index_location): os.makedirs(index_location)