diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-24 17:19:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-24 17:19:40 -0500 |
commit | f8a4ce6be6629907dd88a8e34e29dea7f26dd806 (patch) | |
tree | 2c7ed6adb01fef96120a70bfa291c02a562b29e6 /igor.py | |
parent | 1970942823f7d51549337a77d3b43dbc08f548b2 (diff) | |
download | python-coveragepy-git-f8a4ce6be6629907dd88a8e34e29dea7f26dd806.tar.gz |
py3...
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ def do_help(args): items.sort() for name, value in items: if name.startswith('do_'): - print "%-20s%s" % (name[3:], value.__doc__) + print("%-20s%s" % (name[3:], value.__doc__)) def main(args): |