[PATCH 02/17] nmbug-status: Use email.utils instead of rfc822
W. Trevor King
wking at tremily.us
Mon Feb 3 02:59:20 PST 2014
rfc822 has been deprecated since Python 2.3, and it's gone in
Python 3 [1].
[1]: http://docs.python.org/2/library/rfc822.html
---
devel/nmbug/nmbug-status | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/devel/nmbug/nmbug-status b/devel/nmbug/nmbug-status
index b1feee9..6525176 100755
--- a/devel/nmbug/nmbug-status
+++ b/devel/nmbug/nmbug-status
@@ -9,7 +9,7 @@
from __future__ import print_function
import datetime
-import rfc822
+import email.utils
import urllib
import json
import argparse
@@ -128,7 +128,7 @@ def print_view(title, query, comment):
val = str.join(' ', val.split(None)[1:4])
val = str(datetime.datetime.strptime(val, '%d %b %Y').date())
elif header == 'from':
- (val, addr) = rfc822.parseaddr(val)
+ (val, addr) = email.utils.parseaddr(val)
if val == '':
val = addr.split('@')[0]
--
1.8.5.2.8.g0f6c0d1
More information about the notmuch
mailing list