diff --git a/.gitignore b/.gitignore index 84079f2..5dc75af 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,9 @@ AUTHORS build ChangeLog dist +# Doc related doc/build +doc/source/api/ # Development environment files .project .pydevproject diff --git a/openstackclient/api/api.py b/openstackclient/api/api.py index 72a66e1..67386aa 100644 --- a/openstackclient/api/api.py +++ b/openstackclient/api/api.py @@ -227,6 +227,7 @@ class BaseAPI(KeystoneSession): attribute to use for resource search :param string resource: plural of the object resource name; defaults to path + For example: n = find(netclient, 'network', 'networks', 'matrix') """ diff --git a/openstackclient/common/commandmanager.py b/openstackclient/common/commandmanager.py index 2d9575d..b34bf7d 100644 --- a/openstackclient/common/commandmanager.py +++ b/openstackclient/common/commandmanager.py @@ -28,7 +28,7 @@ class CommandManager(cliff.commandmanager.CommandManager): """Add additional functionality to cliff.CommandManager Load additional command groups after initialization - Add *_command_group() methods + Add _command_group() methods """ def __init__(self, namespace, convert_underscores=True):