From 5a1c29b5cc57bf63e94297f1ac5c12b462b99410 Mon Sep 17 00:00:00 2001 From: Sylvain Thenault Date: Wed, 15 Oct 2008 08:05:37 +0200 Subject: fix .bat files as suggested by Okko Willeboords to all space in file names --- bin/pylint-gui.bat | 2 +- bin/pylint.bat | 2 +- bin/pyreverse.bat | 2 +- bin/symilar.bat | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/pylint-gui.bat b/bin/pylint-gui.bat index 68d552e..b721e5c 100644 --- a/bin/pylint-gui.bat +++ b/bin/pylint-gui.bat @@ -3,7 +3,7 @@ rem = """-*-Python-*- script @echo off rem -------------------- DOS section -------------------- rem You could set PYTHONPATH or TK environment variables here -python -x %~f0 %* +python -x "%~f0" %* goto exit """ diff --git a/bin/pylint.bat b/bin/pylint.bat index 772735a..6fab01a 100644 --- a/bin/pylint.bat +++ b/bin/pylint.bat @@ -2,7 +2,7 @@ rem = """-*-Python-*- script rem -------------------- DOS section -------------------- rem You could set PYTHONPATH or TK environment variables here -python -x %~f0 %* +python -x "%~f0" %* goto exit """ diff --git a/bin/pyreverse.bat b/bin/pyreverse.bat index 1ef9b84..f131302 100644 --- a/bin/pyreverse.bat +++ b/bin/pyreverse.bat @@ -3,7 +3,7 @@ rem = """-*-Python-*- script @echo off rem -------------------- DOS section -------------------- rem You could set PYTHONPATH or TK environment variables here -python -x %~f0 %* +python -x "%~f0" %* goto exit """ diff --git a/bin/symilar.bat b/bin/symilar.bat index 5c9bd0e..24e339e 100644 --- a/bin/symilar.bat +++ b/bin/symilar.bat @@ -3,7 +3,7 @@ rem = """-*-Python-*- script @echo off rem -------------------- DOS section -------------------- rem You could set PYTHONPATH or TK environment variables here -python -x %~f0 %* +python -x "%~f0" %* goto exit """ -- cgit v1.2.1