diff options
author | Isis Lovecruft <isis@torproject.org> | 2013-04-15 19:52:29 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2013-04-15 19:52:29 +0000 |
commit | 368f03896aaf88249805b5ae2484c67d8fe73d74 (patch) | |
tree | 3e32d5372ff02778d86a369d3583d218d9fcb878 /src/leap/mx | |
parent | 07488a8d4c4aea1f7c86cd13219ee37ec8b46850 (diff) |
Update ConnectedCouchDB.__init__() docstring.
Diffstat (limited to 'src/leap/mx')
-rw-r--r-- | src/leap/mx/couchdb.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/leap/mx/couchdb.py b/src/leap/mx/couchdb.py index f63d2f0..e7aee8b 100644 --- a/src/leap/mx/couchdb.py +++ b/src/leap/mx/couchdb.py @@ -36,12 +36,12 @@ class ConnectedCouchDB(client.CouchDB): """ Connect to a CouchDB instance. - @param host: A hostname string for the CouchDB server. - @param port: The port of the CouchDB server, as an integer. - @param dbName: (optional) The default database to connect to. - @param username: (optional) The username for authorization. - @param password: (optional) The password for authorization. - @returns: A :class:`twisted.internet.defer.Deferred` representing the + :param str host: A hostname string for the CouchDB server. + :param int port: The port of the CouchDB server. + :param str dbName: (optional) The default database to bind queries to. + :param str username: (optional) The username for authorization. + :param str password: (optional) The password for authorization. + :returns: A :class:`twisted.internet.defer.Deferred` representing the the client connection to the CouchDB instance. """ super(client.CouchDB, self).__init__(host, |