# HG changeset patch # User egazoni # Date 1273237383 -7200 # Node ID 2a5cc708c2a09df8db1a4b45d9a24408b0e9ea8c # Parent 96fd339f7917ed01ecc9f1d7d5664e84f55bdc1d fixed bug of non-normalized path under Windows, that broke the reload mechanism diff -r 96fd339f7917 -r 2a5cc708c2a0 bin/cubicweb-ctl.bat --- a/bin/cubicweb-ctl.bat Thu May 06 16:23:39 2010 +0000 +++ b/bin/cubicweb-ctl.bat Fri May 07 15:03:03 2010 +0200 @@ -8,8 +8,8 @@ """ # -------------------- Python section -------------------- import sys -from os.path import join, dirname -sys.path.insert(0, join(dirname(__file__), '..', '..')) +from os.path import join, dirname, normpath +sys.path.insert(0, normpath(join(dirname(__file__), '..', '..'))) from cubicweb.cwctl import run run(sys.argv[1:])