Remove references to 'wsmanclient' in docs.

Change-Id: I34af0ce32d5a7acf67a9d977616ef8353dbcdb9b
This commit is contained in:
Miles Gould 2016-11-14 16:32:45 +00:00
parent 477eb013aa
commit 51b97178aa
1 changed files with 4 additions and 4 deletions

View File

@ -3,13 +3,13 @@ Usage
Create a client object by providing the connection details of the DRAC card:: Create a client object by providing the connection details of the DRAC card::
client = wsmanclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t') client = dracclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t')
.. note:: .. note::
By default it will use port 443, '/wsman' as path and https protocol. By default it will use port 443, '/wsman' as path and https protocol.
You can override the default port, path and protocol:: You can override the default port, path and protocol::
client = wsmanclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t', client = dracclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t',
port=443, path='/wsman', port=443, path='/wsman',
protocol='https') protocol='https')