Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 4de8914

Browse files
committed
Make login method docstrings service generic
1 parent b1645da commit 4de8914

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cloudant/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,17 +177,17 @@ def session_login(self, user=None, passwd=None):
177177
Performs a session login by posting the auth information
178178
to the _session endpoint.
179179
180-
:param str user: Username used to connect to CouchDB.
181-
:param str auth_token: Authentication token used to connect to CouchDB.
180+
:param str user: Username used to connect to server.
181+
:param str auth_token: Authentication token used to connect to server.
182182
"""
183183
self.change_credentials(user=user, auth_token=passwd)
184184

185185
def change_credentials(self, user=None, auth_token=None):
186186
"""
187187
Change login credentials.
188188
189-
:param str user: Username used to connect to CouchDB.
190-
:param str auth_token: Authentication token used to connect to CouchDB.
189+
:param str user: Username used to connect to server.
190+
:param str auth_token: Authentication token used to connect to server.
191191
"""
192192
self.r_session.set_credentials(user, auth_token)
193193
self.r_session.login()

0 commit comments

Comments
 (0)