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:])