summaryrefslogtreecommitdiff
path: root/paramiko/config.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2015-11-02 17:06:11 -0800
committerJeff Forcier <jeff@bitprophet.org>2015-11-02 17:06:11 -0800
commite73dc7751bb2ad360308f43918f6bd62aefbb085 (patch)
treedf95af9ddeda97e68719b0f29237ab0cca93ef8c /paramiko/config.py
parente6593de3b5ebb88a9a32d8e83245726d394a2646 (diff)
downloadparamiko-e73dc7751bb2ad360308f43918f6bd62aefbb085.tar.gz
Fix a handful of non-strict warnings in the Sphinx docs.
Turns out there's a reason we haven't run the strict checker (sphinx-build -nW) before - it tries to resolve literally every info-list field like ':raises IOError:' and sphinx is apparently not cool enough to mesh that with intersphinx.
Diffstat (limited to 'paramiko/config.py')
-rw-r--r--paramiko/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/config.py b/paramiko/config.py
index b58e66a2..5c2efdcc 100644
--- a/paramiko/config.py
+++ b/paramiko/config.py
@@ -51,7 +51,7 @@ class SSHConfig (object):
"""
Read an OpenSSH config from the given file object.
- :param file file_obj: a file-like object to read the config file from
+ :param file_obj: a file-like object to read the config file from
"""
host = {"host": ['*'], "config": {}}
for line in file_obj: