From a7397e9dc583526d69e162c41d600219316a3597 Mon Sep 17 00:00:00 2001 From: Vincent Vinet Date: Mon, 25 Aug 2014 11:09:10 -0400 Subject: [PATCH] flake8 80 chars --- email_template_dateutil/email_template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/email_template_dateutil/email_template.py b/email_template_dateutil/email_template.py index b8660ecf6..49ea45e7c 100644 --- a/email_template_dateutil/email_template.py +++ b/email_template_dateutil/email_template.py @@ -59,8 +59,8 @@ def format_date(context, dtstr, new_format, tz=None): utc_timestamp = utc.localize(date, is_dst=False) # UTC = no DST date = utc_timestamp.astimezone(context_tz) except Exception: - _logger.debug("failed to compute context/client-specific timestamp, " - "using the UTC value", + _logger.debug("failed to compute context/client-specific " + "timestamp, using the UTC value", exc_info=True) return date.strftime(new_format)