Fix missing import (followup to #4473).

This commit is contained in:
Antoine Pitrou 2012-11-24 18:14:12 +01:00
parent df204be922
commit 7fde5b3ccf
1 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,9 @@ Based on the J. Myers POP3 draft, Jan. 96
# Imports
import re, socket
import errno
import re
import socket
try:
import ssl