mirror of
https://github.com/RPCS3/glslang.git
synced 2025-03-02 15:55:45 +00:00
Merge pull request #1133 from greg-lunarg/kg2
Add python3 compatibility to update_glslang_sources.py
This commit is contained in:
commit
a63622286f
@ -141,7 +141,7 @@ def main():
|
||||
|
||||
# Create the subdirectories in sorted order so that parent git repositories
|
||||
# are created first.
|
||||
for c in sorted(commits, cmp=lambda x,y: cmp(x.subdir, y.subdir)):
|
||||
for c in sorted(commits, key=lambda x: x.subdir):
|
||||
print('Get {n}\n'.format(n=c.name))
|
||||
c.Checkout()
|
||||
sys.exit(0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user