From e1df15c401efbcac2982ddf30919835cb25f87a7 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Fri, 12 Apr 2002 20:50:05 +0000 Subject: [PATCH] AddrlistClass -> AddressList --- Lib/email/Utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/email/Utils.py b/Lib/email/Utils.py index 887be55d7d2..f8e48ef4f94 100644 --- a/Lib/email/Utils.py +++ b/Lib/email/Utils.py @@ -14,7 +14,7 @@ from cStringIO import StringIO from types import ListType from rfc822 import unquote, quote -from rfc822 import AddrlistClass as _AddrlistClass +from rfc822 import AddressList as _AddressList from rfc822 import mktime_tz # We need wormarounds for bugs in these methods in older Pythons (see below) @@ -96,7 +96,7 @@ def dump_address_pair(pair): def getaddresses(fieldvalues): """Return a list of (REALNAME, EMAIL) for each fieldvalue.""" all = COMMASPACE.join(fieldvalues) - a = _AddrlistClass(all) + a = _AddressList(all) return a.getaddrlist()