Use self instead of non-existing variable name.

This commit is contained in:
Valentin Lorentz 2012-05-02 21:06:22 +02:00
parent 9352322075
commit c83481bd9c
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change """stick the various versioning attributes in here, so we only have to change
them once.""" them once."""
version = '0.83.4.1+limnoria (2012-05-02T18:58:56+0000)' version = '0.83.4.1+limnoria (2012-05-02T19:06:22+0000)'