mercurial/merge.py
changeset 3169 9e002614f2eb
parent 3167 e67c22bc8bba
child 3211 3fd098e0902d
--- a/mercurial/merge.py	Fri Sep 29 17:47:51 2006 -0500
+++ b/mercurial/merge.py	Fri Sep 29 17:50:59 2006 -0500
@@ -380,7 +380,7 @@
         p1, p2 = p2, repo.changectx(nullid)
 
     xp1, xp2 = str(p1), str(p2)
-    if p2.node() == nullid: xp2 = ''
+    if not p2: xp2 = ''
 
     repo.hook('preupdate', throw=True, parent1=xp1, parent2=xp2)