Changeset - 0c9dfae57107
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-08-18 00:02:21
marcin@python-works.com
fixed path issue
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pylons_app/lib/indexers/daemon.py
Show inline comments
 
@@ -29,13 +29,13 @@ from pidlock import LockHeld, DaemonLock
 
import traceback
 

	
 
from os.path import dirname as dn
 
from os.path import join as jn
 

	
 
#to get the pylons_app import
 
sys.path.append(dn(dn(dn(os.path.realpath(__file__)))))
 
sys.path.append(dn(dn(dn(dn(os.path.realpath(__file__))))))
 

	
 
from pylons_app.config.environment import load_environment
 
from pylons_app.model.hg_model import HgModel
 
from whoosh.index import create_in, open_dir
 
from shutil import rmtree
 
from pylons_app.lib.indexers import ANALYZER, EXCLUDE_EXTENSIONS, IDX_LOCATION, SCHEMA, IDX_NAME
0 comments (0 inline, 0 general)