diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-06-25 06:51:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-25 06:51:38 -0400 |
commit | c8881361c3b1377bd44b73754f967a6733c44410 (patch) | |
tree | 64b3ad64ca8c22a72c1cd5f0309f4891abe16e14 /lab/show_platform.py | |
parent | de0d4bdf03edbf5a95a71fb94352afd7810a1b18 (diff) | |
parent | 14b311b7783be3bc2823f17e003d8b9c6efbd3ab (diff) | |
download | python-coveragepy-git-c8881361c3b1377bd44b73754f967a6733c44410.tar.gz |
Merge pull request #670 from cclauss/print_function
print() is a function in Python 3
Diffstat (limited to 'lab/show_platform.py')
-rw-r--r-- | lab/show_platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lab/show_platform.py b/lab/show_platform.py index 76122d58..e4f4dc2a 100644 --- a/lab/show_platform.py +++ b/lab/show_platform.py @@ -13,4 +13,4 @@ for n in dir(platform): n += "()" except: continue - print "%30s: %r" % (n, v) + print("%30s: %r" % (n, v)) |