Apply Python 3 futurize transform lib2to3.fixes.fix_idioms.

This commit is contained in:
Tim Abbott 2015-11-01 08:10:16 -08:00
parent 5f1d06390c
commit 49922b9474

View file

@ -731,8 +731,7 @@ def p4ChangesForPaths(depotPaths, changeRange):
changeNum = int(line.split(" ")[1])
changes[changeNum] = True
changelist = changes.keys()
changelist.sort()
changelist = sorted(changes.keys())
return changelist
def p4PathStartsWith(path, prefix):