##// END OF EJS Templates
manifest: remove redundant sorted() call for --all...
Adrian Buehlmann -
r17376:3738d625 default
parent child Browse files
Show More
@@ -4177,7 +4177,7 b' def manifest(ui, repo, node=None, rev=No'
4177 res.append(fn[plen:-slen])
4177 res.append(fn[plen:-slen])
4178 finally:
4178 finally:
4179 lock.release()
4179 lock.release()
4180 for f in sorted(res):
4180 for f in res:
4181 ui.write("%s\n" % f)
4181 ui.write("%s\n" % f)
4182 return
4182 return
4183
4183
General Comments 0
You need to be logged in to leave comments. Login now