diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-11-21 20:41:07 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-11-21 20:41:07 (GMT) |
commit | fec326269163f2c27e8bb89bea264495fe337918 (patch) | |
tree | db5891f070796cfc38000d03c89a646e4900afb5 /Lib/distutils | |
parent | 69ceb33baccb85d7d215733c14861c1b3548aba5 (diff) | |
download | cpython-fec326269163f2c27e8bb89bea264495fe337918.zip cpython-fec326269163f2c27e8bb89bea264495fe337918.tar.gz cpython-fec326269163f2c27e8bb89bea264495fe337918.tar.bz2 |
Reflow comment
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/spawn.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py index 6e0423b..4857ce5 100644 --- a/Lib/distutils/spawn.py +++ b/Lib/distutils/spawn.py @@ -25,9 +25,9 @@ def spawn (cmd, There is no way to run a program with a name different from that of its executable. - If 'search_path' is true (the default), the system's executable search - path will be used to find the program; otherwise, cmd[0] must be the - exact path to the executable.If 'dry_run' is true, + If 'search_path' is true (the default), the system's executable + search path will be used to find the program; otherwise, cmd[0] + must be the exact path to the executable. If 'dry_run' is true, the command will not actually be run. Raise DistutilsExecError if running the program fails in any way; just |