registry: Use the correct variable name setName creates the child entry

Signed-off-by: James McCoy <jamessan@users.sourceforge.net>

Conflicts:

	src/registry.py
This commit is contained in:
James McCoy 2012-05-22 22:46:35 -04:00 committed by Valentin Lorentz
parent edca443eed
commit 4c01cb93e0

View File

@ -232,7 +232,7 @@ class Group(object):
parts = split(rest)
if len(parts) == 1 and parts[0] == name:
try:
self.__makeChild(self, v)
self.__makeChild(name, v)
except InvalidRegistryValue:
# It's probably supposed to be registered later.
pass