Code

Fix matching of incoming email addresses to the alternate_addresses
[roundup.git] / roundup / anypy / cookie_.py
2 try:
3     from http import cookies as Cookie
4     from http.cookies import CookieError, BaseCookie, SimpleCookie
5     from http.cookies import _getdate as get_cookie_date
6 except:
7     from Cookie import CookieError, BaseCookie, SimpleCookie
8     from Cookie import _getdate as get_cookie_date