Get rid of any Exception.message Python 2-isms.
Review Request #15049 — Created May 13, 2026 and submitted — Latest diff uploaded
There were a few places in the codebase that were still accessing
Exception.message, an attribute that doesn't exist anymore in Python
3. This gets rid of them.Also fixed a spot where we were doing
e.read()on a non-HTTPError.
Ran unit tests.