From d722a827c2b80247996cfdb92f589167afbb36be Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Tue, 24 Sep 2002 09:59:50 +0000 Subject: [PATCH] Make test_rfc822 pass again. --- Lib/rfc822.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/rfc822.py b/Lib/rfc822.py index aa148b17461e..78f7eea397d0 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -487,7 +487,7 @@ def quote(str): def parseaddr(address): """Parse an address into a (realname, mailaddr) tuple.""" - a = AddrlistClass(address) + a = AddressList(address) list = a.addresslist if not list: return (None, None) -- 2.47.3