summaryrefslogtreecommitdiff
path: root/paramiko/__init__.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 11:11:10 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 11:11:10 -0800
commit3f9270c0be18b09cd39279730eac125776adbedc (patch)
treed1f07354948a265339bc9229c0d1bc5f8c2865e2 /paramiko/__init__.py
parentf40bf59ff3d18e7a0d8cdf685df09efaeb3b126e (diff)
downloadparamiko-3f9270c0be18b09cd39279730eac125776adbedc.tar.gz
Mass SnR of class refs with dotted ones.
Boo on Sphinx for not letting me just change this behavior by default. There are a handful of incorrect items here that will get tweaked later.
Diffstat (limited to 'paramiko/__init__.py')
-rw-r--r--paramiko/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 4bf0c7e6..1f7f6bc3 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -26,9 +26,9 @@ replaced ``telnet`` and ``rsh`` for secure access to remote shells, but the
protocol also includes the ability to open arbitrary channels to remote
services across an encrypted tunnel. (This is how ``sftp`` works, for example.)
-The high-level client API starts with creation of an :class:`SSHClient` object.
+The high-level client API starts with creation of an :class:`.SSHClient` object.
For more direct control, pass a socket (or socket-like object) to a
-:class:`Transport`, and use :class:`start_server <Transport.start_server>` or
+:class:`.Transport`, and use :class:`start_server <Transport.start_server>` or
:class:`start_client <Transport.start_client>` to negoatite
with the remote host as either a server or client. As a client, you are
responsible for authenticating using a password or private key, and checking