summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-10 12:37:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-10 12:37:36 -0500
commit7865e5067d30c98f280ad06175b26c93508783c5 (patch)
treefeb82c87c38795f13f2da6746848d2b9ebb882e7 /igor.py
parentf6d343cf2259491ce9556758c5398e0db76d804c (diff)
downloadpython-coveragepy-git-7865e5067d30c98f280ad06175b26c93508783c5.tar.gz
Make multiprocessing support work with spawned processes, which is what Windows uses.
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index b857fcc3..54b8da16 100644
--- a/igor.py
+++ b/igor.py
@@ -332,7 +332,7 @@ def print_banner(label):
which_python = os.path.relpath(sys.executable)
except ValueError:
# On Windows having a python executable on a different drives
- # than the sources cannot be relative
+ # than the sources cannot be relative.
which_python = sys.executable
print('=== %s %s %s (%s) ===' % (impl, version, label, which_python))
sys.stdout.flush()