#378 Fix `HTTPError.response` comparison.
Merged by jkaluza. Opened by jkaluza.
jkaluza/freshmaker httperror  into  master

Download 378.patch

The requests.Response evaluates to True if it is HTTP 200 OK,
otherwise it is False. The code changes by this commit however
wanted to check if e.response is None or set to some Response.
This did not work, because even if e.response was set, it evaluated
to False, because its status code was 401.

Pull-Request has been merged by jkaluza

Metadata