revset: unindent "if True" block in sort()

It was there to make the previous patch readable.
This commit is contained in:
Yuya Nishihara 2016-04-23 16:11:05 +09:00
parent 37d980f070
commit 5ed7576a38

View File

@ -1868,7 +1868,6 @@ def sort(repo, subset, x):
return revs
# sort() is guaranteed to be stable
ctxs = [repo[r] for r in revs]
if True:
for k in reversed(keys):
if k == 'rev':
ctxs.sort(key=lambda c: c.rev())