pep8: Fix E225 pep8 violations.

This commit is contained in:
Rafid Aslam 2016-11-29 05:29:01 +07:00 committed by Tim Abbott
parent 245c05decd
commit d4410365ea
2 changed files with 8 additions and 8 deletions

View file

@ -84,7 +84,7 @@ def check_permissions():
def build_message(event):
if not ('bucket' in event and 'creator' in event and 'html_url' in event):
logging.error("Perhaps the Basecamp API changed behavior? "
"This event doesn't have the expected format:\n%s" %(event,))
"This event doesn't have the expected format:\n%s" % (event,))
return None
# adjust the topic length to be bounded to 60 characters
topic = event['bucket']['name']

View file

@ -230,28 +230,28 @@ class Client(object):
self.client_name = client
if insecure:
self.tls_verification=False
self.tls_verification = False
elif cert_bundle is not None:
if not os.path.isfile(cert_bundle):
raise RuntimeError("tls bundle '%s' does not exist"
%(cert_bundle,))
self.tls_verification=cert_bundle
% (cert_bundle,))
self.tls_verification = cert_bundle
else:
# Default behavior: verify against system CA certificates
self.tls_verification=True
self.tls_verification = True
if client_cert is None:
if client_cert_key is not None:
raise RuntimeError("client cert key '%s' specified, but no client cert public part provided"
%(client_cert_key,))
% (client_cert_key,))
else: # we have a client cert
if not os.path.isfile(client_cert):
raise RuntimeError("client cert '%s' does not exist"
%(client_cert,))
% (client_cert,))
if client_cert_key is not None:
if not os.path.isfile(client_cert_key):
raise RuntimeError("client cert key '%s' does not exist"
%(client_cert_key,))
% (client_cert_key,))
self.client_cert = client_cert
self.client_cert_key = client_cert_key