[Checkins] SVN: zopyx.smartprintng.server/trunk/zopyx/smartprintng/server/mail_util.py minor cleanup

Andreas Jung andreas at andreas-jung.com
Sun Jul 19 04:43:21 EDT 2009


Log message for revision 101994:
  minor cleanup
  

Changed:
  U   zopyx.smartprintng.server/trunk/zopyx/smartprintng/server/mail_util.py

-=-
Modified: zopyx.smartprintng.server/trunk/zopyx/smartprintng/server/mail_util.py
===================================================================
--- zopyx.smartprintng.server/trunk/zopyx/smartprintng/server/mail_util.py	2009-07-19 08:41:40 UTC (rev 101993)
+++ zopyx.smartprintng.server/trunk/zopyx/smartprintng/server/mail_util.py	2009-07-19 08:43:21 UTC (rev 101994)
@@ -18,10 +18,10 @@
     CP.read('email.ini')
 
     return SMTPMailer(hostname=CP.get('mail', 'hostname') or 'localhost',
-                        username=CP.get('mail', 'username') or None,
-                        password=CP.get('mail', 'password') or None,
-                        no_tls=CP.getboolean('mail', 'no_tls') or False,
-                        force_tls=CP.getboolean('mail', 'force_tls') or False)
+                      username=CP.get('mail', 'username') or None,
+                      password=CP.get('mail', 'password') or None,
+                      no_tls=CP.getboolean('mail', 'no_tls') or False,
+                      force_tls=CP.getboolean('mail', 'force_tls') or False)
 
 def send_email(sender, recipient, subject, body, attachments=[]):
 



More information about the Checkins mailing list