##// END OF EJS Templates
rebase: factor out histedit help command
timeless@mozdev.org -
r26494:832f40d2 default
parent child Browse files
Show More
@@ -217,8 +217,9 b' def rebase(ui, repo, **opts):'
217 keepopen = opts.get('keepopen', False)
217 keepopen = opts.get('keepopen', False)
218
218
219 if opts.get('interactive'):
219 if opts.get('interactive'):
220 help = "hg help histedit"
220 msg = _("interactive history editing is supported by the "
221 msg = _("interactive history editing is supported by the "
221 "'histedit' extension (see \"hg help histedit\")")
222 "'histedit' extension (see \"%s\")") % help
222 raise util.Abort(msg)
223 raise util.Abort(msg)
223
224
224 if collapsemsg and not collapsef:
225 if collapsemsg and not collapsef:
General Comments 0
You need to be logged in to leave comments. Login now