diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-05-24 16:47:18 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2013-05-24 16:47:18 +0200 |
commit | aa3ed1c920c3febf6f875b1e34587f26b88de01a (patch) | |
tree | dafb5b347fa995550f35167a3383b93dd795775b | |
parent | e5a626744419ff4942785d4158373f4f6cadde3a (diff) | |
download | pykolab-aa3ed1c920c3febf6f875b1e34587f26b88de01a.tar.gz |
Fix indentation issues
-rw-r--r-- | pykolab/conf/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pykolab/conf/__init__.py b/pykolab/conf/__init__.py index 1576d84..239c0dd 100644 --- a/pykolab/conf/__init__.py +++ b/pykolab/conf/__init__.py @@ -596,7 +596,7 @@ class Conf(object): if value: try: from smtplib import SMTP - self.use_mail = value + self.use_mail = value return True except ImportError: log.error(_("No SMTP class found in the smtplib library.")) @@ -606,8 +606,8 @@ class Conf(object): # Attempt to load the suite, # Get the suite's options, # Set them here. - if not hasattr(self,'test_suites'): - self.test_suites = [] + if not hasattr(self,'test_suites'): + self.test_suites = [] if "zpush" in value: selectively = False |