summaryrefslogtreecommitdiff
path: root/keystoneclient/auth/cli.py
diff options
context:
space:
mode:
authorGage Hugo <gagehugo@gmail.com>2017-02-09 10:22:28 -0600
committerGage Hugo <gagehugo@gmail.com>2017-02-09 10:22:28 -0600
commit67b1cd3705c0e45f0304f8a9d008b03f554ec7d2 (patch)
treecd22ae38f953816894777913c5d6dce0d89ac47d /keystoneclient/auth/cli.py
parent689729fa354921152cb1bd7220056a89b627e66e (diff)
downloadpython-keystoneclient-67b1cd3705c0e45f0304f8a9d008b03f554ec7d2.tar.gz
Fix 12 warnings when building keystoneclient docs
While building keystoneclient docs, there are currently 12 warnings emitted that specify either: WARNING: more than one target found for cross-reference u'list' WARNING: more than one target found for cross-reference u'Auth' This change specifies the correct object for the docstring with "List" since there are many instances of "list" within keystoneclient and specifies the proper "Auth" object. With these changes, the warnings no longer appear. Change-Id: I4515429df38760700552d48fc570c03abf116f83
Diffstat (limited to 'keystoneclient/auth/cli.py')
-rw-r--r--keystoneclient/auth/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/auth/cli.py b/keystoneclient/auth/cli.py
index d8cc820..1b8e054 100644
--- a/keystoneclient/auth/cli.py
+++ b/keystoneclient/auth/cli.py
@@ -32,7 +32,7 @@ def register_argparse_arguments(parser, argv, default=None):
the options required for that specific plugin if available.
:param argparse.ArgumentParser: the parser to attach argparse options to.
- :param list argv: the arguments provided to the application.
+ :param List argv: the arguments provided to the application.
:param str/class default: a default plugin name or a plugin object to use
if one isn't specified by the CLI. default: None.