# HG changeset patch # User Marcin Kuzminski # Date 2010-08-17 22:02:21 # Node ID 0c9dfae57107316eced7fe1d9fce6e98df43b264 # Parent b153a51b1d3b7b1e5c147039a41223e4df48576a fixed path issue diff --git a/pylons_app/lib/indexers/daemon.py b/pylons_app/lib/indexers/daemon.py --- a/pylons_app/lib/indexers/daemon.py +++ b/pylons_app/lib/indexers/daemon.py @@ -32,7 +32,7 @@ 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