Mercurial > public > src > rhodecode
changeset 1491:90eebc0f040c beta
Fixed whoosh index location bug
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Sat, 02 Jul 2011 14:40:27 +0000 |
parents | ff7f5922e4e0 |
children | 5f878edbee00 |
files | rhodecode/lib/utils.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/rhodecode/lib/utils.py Sat Jul 02 14:47:07 2011 +0200 +++ b/rhodecode/lib/utils.py Sat Jul 02 14:40:27 2011 +0000 @@ -471,7 +471,7 @@ 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)