##// END OF EJS Templates
py3: fix exception in pull when several things happen to a bookmark...
Valentin Gatien-Baron -
r45357:f189c528 stable
parent child Browse files
Show More
@@ -754,7 +754,8 b' def updatefromremote(ui, repo, remotemar'
754 if changed:
754 if changed:
755 tr = trfunc()
755 tr = trfunc()
756 changes = []
756 changes = []
757 for b, node, writer, msg in sorted(changed):
757 key = lambda t: (t[0], t[1] or b'')
758 for b, node, writer, msg in sorted(changed, key=key):
758 changes.append((b, node))
759 changes.append((b, node))
759 writer(msg)
760 writer(msg)
760 localmarks.applychanges(repo, tr, changes)
761 localmarks.applychanges(repo, tr, changes)
General Comments 0
You need to be logged in to leave comments. Login now