summaryrefslogtreecommitdiffstats
path: root/test/Glob
diff options
context:
space:
mode:
authorGreg Noel <GregNoel@tigris.org>2010-04-16 22:01:00 (GMT)
committerGreg Noel <GregNoel@tigris.org>2010-04-16 22:01:00 (GMT)
commite4b439f4265613556de0124593ac86898d6f52c7 (patch)
tree5fb5a4bdb919e42f85be12114a204659bfb3fef4 /test/Glob
parentded0f52f11f5c97959ee8070a2687ecb14e69e3f (diff)
downloadSCons-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/Glob')
-rw-r--r--test/Glob/source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Glob/source.py b/test/Glob/source.py
index afa17f5..f1ea566 100644
--- a/test/Glob/source.py
+++ b/test/Glob/source.py
@@ -66,7 +66,7 @@ env.Concatenate('f.out', sorted(Glob('f[45].in', source=True),
test.write(['var2', 'SConscript'], """\
Import("env")
-f_in = sorted(Glob('f[67].in'), cmp=lambda a,b: cmp(a.name, b.name))
+f_in = sorted(Glob('f[67].in'), key=lambda a: a.name)
env.Concatenate('f.out', f_in)
""")