Commit 2b62b96c authored by Jeremy Hylton's avatar Jeremy Hylton

Make terminator constants bytes.

parent 0294f556
......@@ -28,8 +28,8 @@ POP3_PORT = 110
POP3_SSL_PORT = 995
# Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
CR = '\r'
LF = '\n'
CR = b'\r'
LF = b'\n'
CRLF = CR+LF
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment