blob: b0ac4d326532f542781becde526d3ddf9b4c2905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- ./src/SConscript.orig 2014-09-04 16:06:21.000000000 -0400
+++ ./src/SConscript 2017-10-15 11:22:06.536446627 -0400
@@ -151,7 +151,7 @@ src = Split("""
utils.cpp
window.cpp""")
-src.sort(lambda x, y: cmp(x.lower(),y.lower()))
+src.sort(key=lambda x: x.lower())
#------------------------#
# Copy Build Environment #
|