diff options
author | Éric Araujo <merwok@netwok.org> | 2011-04-17 14:48:52 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-04-17 14:48:52 (GMT) |
commit | e7d36fe0a6118a055b407f0651fed3cefc01e9b1 (patch) | |
tree | 86af12fc677836099946e928ed6d76a9545c30e7 /Lib/trace.py | |
parent | a2860e8b51d24807f3ef1cf17b2055fac3b4dd3c (diff) | |
download | cpython-e7d36fe0a6118a055b407f0651fed3cefc01e9b1.zip cpython-e7d36fe0a6118a055b407f0651fed3cefc01e9b1.tar.gz cpython-e7d36fe0a6118a055b407f0651fed3cefc01e9b1.tar.bz2 |
Prevent deprecation warning
Diffstat (limited to 'Lib/trace.py')
-rw-r--r-- | Lib/trace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index 53c6150..850369b 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -688,7 +688,7 @@ def main(argv=None): for opt, val in opts: if opt == "--help": - usage(sys.stdout) + _usage(sys.stdout) sys.exit(0) if opt == "--version": |