diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-07-18 21:55:15 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-07-18 21:55:15 (GMT) |
commit | 73a9eade1c864a5351c4a33cd20983f11dd79d94 (patch) | |
tree | df02505cc40c453cd820e82e5fe2e043801a6616 /Lib/subprocess.py | |
parent | 426f4a1c65e59a9b06b42cd37fbe310f46afcee0 (diff) | |
download | cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.zip cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.tar.gz cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 64846a6..afa92a5 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -369,7 +369,7 @@ class CalledProcessError(Exception): self.cmd = cmd def __str__(self): return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode) - + if mswindows: import threading |