Fix line-wrapped function indents.

This commit is contained in:
Jacob Hoffman-Andrews
2015-10-11 11:30:11 -07:00
parent f0cfd69cdc
commit 06c85d6b5a
3 changed files with 3 additions and 3 deletions
@@ -176,7 +176,7 @@ class Proxy(configurators_common.Proxy):
return {"example.com"}
def deploy_cert(self, domain, cert_path, key_path, chain_path=None,
fullchain_path=None):
fullchain_path=None):
"""Installs cert"""
cert_path, key_path, chain_path = self.copy_certs_and_keys(
cert_path, key_path, chain_path)
@@ -119,7 +119,7 @@ class NginxConfigurator(common.Plugin):
# Entry point in main.py for installing cert
def deploy_cert(self, domain, cert_path, key_path,
chain_path, fullchain_path):
chain_path, fullchain_path):
# pylint: disable=unused-argument
"""Deploys certificate to specified virtual host.
+1 -1
View File
@@ -31,7 +31,7 @@ class Installer(common.Plugin):
return []
def deploy_cert(self, domain, cert_path, key_path,
chain_path=None, fullchain_path=None):
chain_path=None, fullchain_path=None):
pass # pragma: no cover
def enhance(self, domain, enhancement, options=None):