##// END OF EJS Templates
rebase: expand a long "one-liner"...
Boris Feld -
r39953:a8ccd952 default
parent child Browse files
Show More
@@ -1783,9 +1783,10 b' def clearrebased(ui, repo, destmap, stat'
1783 hf = fm.hexfunc
1783 hf = fm.hexfunc
1784 fl = fm.formatlist
1784 fl = fm.formatlist
1785 fd = fm.formatdict
1785 fd = fm.formatdict
1786 nodechanges = fd({hf(oldn): fl([hf(n) for n in newn], name='node')
1786 changes = {}
1787 for oldn, newn in replacements.iteritems()},
1787 for oldn, newn in replacements.iteritems():
1788 key="oldnode", value="newnodes")
1788 changes[hf(oldn)] = fl([hf(n) for n in newn], name='node')
1789 nodechanges = fd(changes, key="oldnode", value="newnodes")
1789 fm.data(nodechanges=nodechanges)
1790 fm.data(nodechanges=nodechanges)
1790
1791
1791 def pullrebase(orig, ui, repo, *args, **opts):
1792 def pullrebase(orig, ui, repo, *args, **opts):
General Comments 0
You need to be logged in to leave comments. Login now