Update exception detection to work with Python3 format.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-08-29 02:04:04 -04:00
parent 2762eeb4d4
commit eab3b660cb
4 changed files with 5 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ class MailerBackend(six.with_metaclass(MailerBackendMetaclass, MailerBackendBase
try:
import_module('{}.mailers'.format(app.name))
except ImportError as exception:
if force_text(exception) != 'No module named mailers':
if force_text(exception) not in ('No module named mailers', 'No module named \'{}.mailers\''.format(app.name)):
logger.error(
'Error importing %s mailers.py file; %s', app.name,
exception