diff options
author | Barry Warsaw <barry@python.org> | 2001-11-09 17:45:48 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-11-09 17:45:48 (GMT) |
commit | 9aa64353984f5ed2d46a605039db32a511db3687 (patch) | |
tree | 18979b14781c943acfd95b50bf5da65e72529568 /Lib/email | |
parent | 3b0c82a2f15f45593b8f92210083d329d0fe2a5f (diff) | |
download | cpython-9aa64353984f5ed2d46a605039db32a511db3687.zip cpython-9aa64353984f5ed2d46a605039db32a511db3687.tar.gz cpython-9aa64353984f5ed2d46a605039db32a511db3687.tar.bz2 |
Forgot to import time.
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/Utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/email/Utils.py b/Lib/email/Utils.py index 93e0a83..58fd8da 100644 --- a/Lib/email/Utils.py +++ b/Lib/email/Utils.py @@ -4,6 +4,7 @@ """Miscellaneous utilities. """ +import time import re from rfc822 import unquote, quote, parseaddr |