fix comment indentation for flake8

This commit is contained in:
Tomas Kopecek 2018-10-18 14:17:22 +02:00 committed by Mike McLean
parent 0fecbc969b
commit 8e7414acff

View file

@ -1931,7 +1931,7 @@ def is_requests_cert_error(e):
# Using str(e) is slightly ugly, but the error stacks in python-requests
# are way more ugly.
errstr = str(e)
if ('Permission denied' in errstr or # certificate not readable
if ('Permission denied' in errstr or # certificate not readable
'certificate revoked' in errstr or
'certificate expired' in errstr or
'certificate verify failed' in errstr):