Enhance the theming for modules page

Also fixes a few small docstring syntax errors

Change-Id: I85eb968e32c1191cf5d60d02deff2ab7f3291074
This commit is contained in:
Steve Martinelli 2014-11-18 00:16:21 -05:00
parent 54ae8ff6a8
commit 73ebc333b2
3 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@ -15,7 +15,9 @@ AUTHORS
build
ChangeLog
dist
# Doc related
doc/build
doc/source/api/
# Development environment files
.project
.pydevproject

View File

@ -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')
"""

View File

@ -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):