diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-27 19:20:06 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-08-27 19:20:06 -0400 |
commit | 94213347541d8138db07811c496d6db138b23700 (patch) | |
tree | 0b2a301bf42ab4ef56476aba9306eb7be5eea1c8 /coverage/control.py | |
parent | 032923e64a98277b13670382cd4324cf1a22438e (diff) | |
download | python-coveragepy-git-94213347541d8138db07811c496d6db138b23700.tar.gz |
question marks aren't as good as -none-
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index a246bb7a..1e23dcd5 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -853,7 +853,7 @@ class Coverage(object): for k, v in iitems(os.environ) if any(slug in k for slug in ("COV", "PY")) )), - ('command_line', " ".join(getattr(sys, 'argv', ['???']))), + ('command_line', " ".join(getattr(sys, 'argv', ['-none-']))), ] if self._inorout: |