summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-10-19 22:08:37 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-10-19 22:08:37 -0400
commit5aa8f70d4ee8b3d40d5caf69c42c67d4fd4f0118 (patch)
treebad8ec8d95104c115461b0bf4cd4e3584a46cfd7 /igor.py
parentdfb5405959bbe14ebcf533cd442c41a314b8a4fd (diff)
downloadpython-coveragepy-5aa8f70d4ee8b3d40d5caf69c42c67d4fd4f0118.tar.gz
Generator expressons are ok now.
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 12ec6c8..9f33f15 100644
--- a/igor.py
+++ b/igor.py
@@ -216,7 +216,7 @@ def print_banner(label):
if '__pypy__' in sys.builtin_module_names:
pypy_version = sys.pypy_version_info # pylint: disable=E1101
- version += " (pypy %s)" % ".".join([str(v) for v in pypy_version])
+ version += " (pypy %s)" % ".".join(str(v) for v in pypy_version)
print('=== %s %s %s (%s) ===' % (impl, version, label, sys.executable))