##// END OF EJS Templates
histedit: avoid repo.lookup() for converting revnum to nodeid...
Martin von Zweigbergk -
r37330:8474005f default
parent child Browse files
Show More
@@ -916,7 +916,7 b' def findoutgoing(ui, repo, remote=None, '
916 msg = _('there are ambiguous outgoing revisions')
916 msg = _('there are ambiguous outgoing revisions')
917 hint = _("see 'hg help histedit' for more detail")
917 hint = _("see 'hg help histedit' for more detail")
918 raise error.Abort(msg, hint=hint)
918 raise error.Abort(msg, hint=hint)
919 return repo.lookup(roots[0])
919 return repo[roots[0]].node()
920
920
921 @command('histedit',
921 @command('histedit',
922 [('', 'commands', '',
922 [('', 'commands', '',
General Comments 0
You need to be logged in to leave comments. Login now