Update docstrings.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/29c0be79 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/29c0be79 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/29c0be79 Branch: refs/heads/trunk Commit: 29c0be79c938cb6ac1f97c517a159ac56f9ffdab Parents: de91606 Author: Tomaz Muraus <[email protected]> Authored: Mon Dec 30 14:20:26 2013 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Mon Dec 30 14:20:26 2013 +0100 ---------------------------------------------------------------------- libcloud/common/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/29c0be79/libcloud/common/base.py ---------------------------------------------------------------------- diff --git a/libcloud/common/base.py b/libcloud/common/base.py index 13e7baf..1639958 100644 --- a/libcloud/common/base.py +++ b/libcloud/common/base.py @@ -861,7 +861,7 @@ class PollingConnection(Connection): class ConnectionKey(Connection): """ - A Base Connection class to derive from, which includes a + Base connection class which accepts a single ``key`` argument. """ def __init__(self, key, secure=True, host=None, port=None, url=None, timeout=None): @@ -877,7 +877,7 @@ class ConnectionKey(Connection): class ConnectionUserAndKey(ConnectionKey): """ - Base connection which accepts a user_id and key. + Base connection class which accepts a ``user_id`` and ``key`` argument. """ user_id = None
