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
commitbad63e02b113626a048ea5eb253293c61902e291 (patch)
treeefb98eaafdf9d9212b53a1e51a782f7ff00cca41 /igor.py
parentb3df60a544a54b4dd604d34137ff08e02b815e81 (diff)
downloadpython-coveragepy-git-bad63e02b113626a048ea5eb253293c61902e291.tar.gz
Generator expressons are ok now.
--HG-- branch : 4.0
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 12ec6c8f..9f33f153 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))