Styling: deprecation

This commit is contained in:
Michael DeHaan 2013-06-30 18:55:45 -04:00
parent 9f6a9def19
commit ca2c28413a

View file

@ -172,7 +172,7 @@ class Rhn(RegistrationBase):
# configuration. Yeah, I know this should be subclassed ... but, oh
# well
def get_option_default(self, key, default=''):
if self.has_key(key):
if 'key' in self:
return self[key]
else:
return default