changeset 19623:d0dbe5330177

histedit: discard meaningless comment about 'hexlify node' Refactoring in 26b41a902195 made this comment meaningless. The node gotten by "discovery.findcommonoutgoing()" is hexlified in "between()" by "repo.set('%n::%n', old, new)".
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Mon, 26 Aug 2013 16:11:21 +0900
parents 3d0ece7523c8
children 55749cb14d24
files hgext/histedit.py
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/histedit.py	Mon Aug 26 16:11:21 2013 +0900
+++ b/hgext/histedit.py	Mon Aug 26 16:11:21 2013 +0900
@@ -419,10 +419,6 @@
     if revs:
         revs = [repo.lookup(rev) for rev in revs]
 
-    # hexlify nodes from outgoing, because we're going to parse
-    # parent[0] using revsingle below, and if the binary hash
-    # contains special revset characters like ":" the revset
-    # parser can choke.
     outgoing = discovery.findcommonoutgoing(repo, other, revs, force=force)
     if not outgoing.missing:
         raise util.Abort(_('no outgoing ancestors'))