Fixed silly bug involving a non-existent variable.

This commit is contained in:
Eric Hopper 2005-10-11 08:06:52 -07:00
parent e7d44d8ed9
commit 34c677ab49

View File

@ -908,7 +908,7 @@ class localrepository:
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 = {}