diff options
-rw-r--r-- | paramiko/config.py | 2 | ||||
-rw-r--r-- | sites/docs/api/config.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/config.py b/paramiko/config.py index 6430f1e0..5336454c 100644 --- a/paramiko/config.py +++ b/paramiko/config.py @@ -222,7 +222,7 @@ class SSHConfig(object): :param str hostname: Target hostname. :param options: An `SSHConfigDict` from a previous lookup pass. - :param list domains: List of domains (e.g. ``["paramiko.org"]``). + :param domains: List of domains (e.g. ``["paramiko.org"]``). :returns: A canonicalized hostname if one was found, else ``None``. diff --git a/sites/docs/api/config.rst b/sites/docs/api/config.rst index 8c17df97..976f0fc2 100644 --- a/sites/docs/api/config.rst +++ b/sites/docs/api/config.rst @@ -41,7 +41,7 @@ what it honors on its end. - ``CanonicalDomains``: sets the domains used for hostname canonicalization. - ``CanonicalizeFallbackLocal``: set to ``no`` to enforce that all looked-up names must resolve under one of the ``CanonicalDomains`` - any names which - don't canonicalize will raise `CouldNotCanonicalize` (instead of silently + don't canonicalize will raise `.CouldNotCanonicalize` (instead of silently returning a config containing only global-level config values, as normal). - ``CanonicalizeHostname``: as with OpenSSH, when a lookup results in this being set to ``yes`` (whether globally or inside a specific block), it |