Roundup Tracker - Issues

Message6571

Author rouilj
Recipients cmeerw, rouilj, schlatterbeck
Date 2019-07-06.01:00:07
Message-id <1562374807.46.0.578439535121.issue2551049@roundup.psfhosted.org>
In-reply-to
Ralf:

Sorry to report this but the test is breaking the build under python 3.

See:  https://travis-ci.org/roundup-tracker/roundup/builds/554042243

The crash reports:

            return address
        try:
>           encname = b2s(name.encode('ASCII'))
E           AttributeError: 'bytes' object has no attribute 'encode'
roundup/mailer.py:38: AttributeError

I committed a change that did:

   b2s(name).encode('ASCII')

but that broke even more places, so I reverted it.
History
Date User Action Args
2019-07-06 01:00:07rouiljsetmessageid: <1562374807.46.0.578439535121.issue2551049@roundup.psfhosted.org>
2019-07-06 01:00:07rouiljsetrecipients: + rouilj, schlatterbeck, cmeerw
2019-07-06 01:00:07rouiljlinkissue2551049 messages
2019-07-06 01:00:07rouiljcreate