Code

Fix matching of incoming email addresses to the alternate_addresses
[roundup.git] / roundup / anypy / io_.py
2 try:
3     from io import StringIO, BytesIO
4 except:
5     from StringIO import StringIO
6     BytesIO = StringIO