diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-08-07 14:50:16 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-08-07 15:25:42 -0300 |
commit | 98f014d99e13651e7dfb0789f8dac0a81aea172e (patch) | |
tree | f2430d40afbcc2b574431a946d6abff7cd08cd38 /src/leap/services/mail/smtpconfig.py | |
parent | 088db436880edd8c8ae51f792fc707d962927485 (diff) |
Define abstract methods from BaseConfig.
Diffstat (limited to 'src/leap/services/mail/smtpconfig.py')
-rw-r--r-- | src/leap/services/mail/smtpconfig.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/leap/services/mail/smtpconfig.py b/src/leap/services/mail/smtpconfig.py index ca974fcf..ea0f9c37 100644 --- a/src/leap/services/mail/smtpconfig.py +++ b/src/leap/services/mail/smtpconfig.py @@ -33,7 +33,14 @@ class SMTPConfig(BaseConfig): def __init__(self): BaseConfig.__init__(self) - self._get_schema = get_schema + + def _get_schema(self): + """ + Returns the schema corresponding to the version given. + + :rtype: dict or None if the version is not supported. + """ + return get_schema(self._api_version) def get_hosts(self): return self._safe_get_value("hosts") |