commit | 26dfaacddac951157c9e30304049f6625f0deebf | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Mon Aug 02 21:35:06 2010 +0000 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Mon Aug 02 21:35:06 2010 +0000 |
tree | 05a417bcff94f321c0d4fecfa35e3c7455400786 | |
parent | 1c9972e6dd50855a3aa97d60418f583a8b40a34d [diff] [blame] |
Merged revisions 78757 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78757 | florent.xicluna | 2010-03-07 14:14:25 +0200 (Sun, 07 Mar 2010) | 2 lines Fix some py3k warnings in the standard library. ........
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 90f68d8..e92bef1 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py
@@ -405,7 +405,7 @@ log.info(msg) if not dry_run: - apply(func, args) + func(*args) def strtobool (val):