merge: minor nullid cleanup
authorMatt Mackall <mpm@selenic.com>
Fri, 29 Sep 2006 17:50:59 -0500
changeset 3202 9e002614f2eb
parent 3201 05c588e1803d
child 3203 14792adabf80
merge: minor nullid cleanup
mercurial/merge.py
--- a/mercurial/merge.py
+++ b/mercurial/merge.py
@@ -380,7 +380,7 @@ def update(repo, node, branchmerge=False
         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)