From 06ba1719090fbaa238e2a3d83ae09b5509f3dfda Mon Sep 17 00:00:00 2001 From: Alexandre Fayolle Date: Wed, 13 Aug 2014 11:04:15 +0200 Subject: [PATCH] flake8: remove unrequired parenthesis --- mail_environment/env_mail.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mail_environment/env_mail.py b/mail_environment/env_mail.py index 114ad32b2..944e5ca88 100644 --- a/mail_environment/env_mail.py +++ b/mail_environment/env_mail.py @@ -91,12 +91,12 @@ class IrMail(osv.osv): string='smtp_encryption', type="char", multi='outgoing_mail_config', - help=("Choose the connection encryption scheme:\n" - "- none: SMTP sessions are done in cleartext.\n" - "- starttls: TLS encryption is requested at start " - "of SMTP session (Recommended)\n" - "- ssl: SMTP sessions are encrypted with SSL/TLS " - "through a dedicated port (default: 465)"), + help="Choose the connection encryption scheme:\n" + "- none: SMTP sessions are done in cleartext.\n" + "- starttls: TLS encryption is requested at start " + "of SMTP session (Recommended)\n" + "- ssl: SMTP sessions are encrypted with SSL/TLS " + "through a dedicated port (default: 465)", size=64)} IrMail()