Skip to content

Commit f984ce6

Browse files
committed
Break long comment lines to make flake8 happy again
1 parent db7595e commit f984ce6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

webware/ExceptionHandler.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -491,9 +491,10 @@ def emailException(self, htmlErrMsg):
491491
or as the body of the mail.
492492
"""
493493

494-
# we use quoted-printable encoding, which will automatically split long lines.
495-
# this is important because tracebacks can contain long representations of python
496-
# data, longer than the max line length smtp servers will accept (a typical limit is 990 bytes).
494+
# We use quoted-printable encoding, which will automatically split
495+
# long lines. This is important because tracebacks can contain long
496+
# representations of Python data, longer than the maximum line length
497+
# that SMTP servers will accept (a typical limit is 990 bytes).
497498
cs = email.charset.Charset('utf-8')
498499
cs.body_encoding = email.charset.QP
499500
message = Message()

0 commit comments

Comments
 (0)