From 91e6753035782356a812b0b2e4700a1894a141dd Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Mon, 22 Nov 2010 00:39:45 -0200 Subject: [PATCH] scrapy.bat: minor fix to support spaces in python installation dir (windows) --- extras/scrapy.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/scrapy.bat b/extras/scrapy.bat index 741ecb2af..a25feaa4a 100644 --- a/extras/scrapy.bat +++ b/extras/scrapy.bat @@ -6,5 +6,5 @@ rem Use a full path to Python (relative to this script) as the standard Python rem install does not put python.exe on the PATH... rem %~dp0 is the directory of this script -%~dp0..\python "%~dp0scrapy" %* +"%~dp0..\python" "%~dp0scrapy" %* endlocal