Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 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 | 12a8d772fa32 |
children | b6d9ea0bc107 |
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 = {}