changeset 1464:00117edce2dd

Fixed silly bug involving a non-existent variable.
author Eric Hopper <hopper@omnifarious.org>
date Tue, 11 Oct 2005 08:06:52 -0700
parents 26e73acc0cdf
children be6b5ce60b7f
files mercurial/localrepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/localrepo.py	Mon Oct 10 17:20:38 2005 -0700
+++ b/mercurial/localrepo.py	Tue Oct 11 08:06:52 2005 -0700
@@ -908,7 +908,7 @@
         knownheads = knownheads.keys()
         if knownheads:
             has_cl_set, junk, junk = cl.nodesbetween(None, knownheads)
-            has_cl_set = dict.fromkeys(hasnodeset)
+            has_cl_set = dict.fromkeys(has_cl_set)
         else:
             has_cl_set = {}