This commit is contained in:
Kovid Goyal 2011-07-16 09:24:29 -06:00
parent 678547f545
commit 68e4572420

View File

@ -386,6 +386,7 @@ class SortKey(object):
ans = cmp(self.sort_key[i], other.sort_key[i]) ans = cmp(self.sort_key[i], other.sort_key[i])
if ans != 0: if ans != 0:
return ans * order return ans * order
return 0
# Testing {{{ # Testing {{{