Tabnanny fixes

This commit is contained in:
Jack Jansen 1998-04-15 14:35:16 +00:00
parent c84cb9511b
commit b8fd1f18ab
3 changed files with 14 additions and 14 deletions

View file

@ -530,7 +530,7 @@ class ComponentItem(SelectableItem):
if self._elemdict.has_key(name):
cls = self._elemdict[name]
return DelayedComponentItem(cls, self)
if self._propdict.has_key(name):
if self._propdict.has_key(name):
cls = self._propdict[name]
return cls(self)
raise AttributeError, name