|
|
@ -133,7 +133,7 @@ class Settings(object): |
|
|
|
return None |
|
|
|
|
|
|
|
try: |
|
|
|
type = self.getType(section, option) |
|
|
|
type = self.getType(section, option) if not type else type |
|
|
|
|
|
|
|
if hasattr(self, 'get%s' % type.capitalize()): |
|
|
|
return getattr(self, 'get%s' % type.capitalize())(section, option) |
|
|
|