diff options
author | Greg Noel <GregNoel@tigris.org> | 2010-04-16 22:01:00 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2010-04-16 22:01:00 (GMT) |
commit | e4b439f4265613556de0124593ac86898d6f52c7 (patch) | |
tree | 5fb5a4bdb919e42f85be12114a204659bfb3fef4 /test/GetBuildFailures | |
parent | ded0f52f11f5c97959ee8070a2687ecb14e69e3f (diff) | |
download | SCons-e4b439f4265613556de0124593ac86898d6f52c7.zip SCons-e4b439f4265613556de0124593ac86898d6f52c7.tar.gz SCons-e4b439f4265613556de0124593ac86898d6f52c7.tar.bz2 |
http://scons.tigris.org/issues/show_bug.cgi?id=2345
Quiet the rest of the 'callable' warnings and fix the rest of the 'cmp
argument' warnings.
Diffstat (limited to 'test/GetBuildFailures')
-rw-r--r-- | test/GetBuildFailures/option-k.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/GetBuildFailures/option-k.py b/test/GetBuildFailures/option-k.py index 53b57ff..300f69f 100644 --- a/test/GetBuildFailures/option-k.py +++ b/test/GetBuildFailures/option-k.py @@ -64,8 +64,7 @@ Command('f6', 'f6.in', r'@%(_python_)s mypass.py f5 - $TARGET $SOURCE') def print_build_failures(): from SCons.Script import GetBuildFailures - for bf in sorted(GetBuildFailures(), - cmp=lambda a,b: cmp(a.filename, b.filename)): + for bf in sorted(GetBuildFailures(), key=lambda a: a.filename): print "%%s failed: %%s" %% (bf.node, bf.errstr) try: |