summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasayuki Igawa <masayuki.igawa@gmail.com>2016-07-25 15:08:28 +0900
committerMasayuki Igawa <masayuki.igawa@gmail.com>2016-07-25 15:13:07 +0900
commit99cf6a5f0ea0d1e9278e8bb436b37658b609ab00 (patch)
tree83fee92c2b892f36fd035f1ab561ed50366ba7bb
parent50af230c7cbe1ba012252773e875d7b65a79e86d (diff)
downloadcliff-99cf6a5f0ea0d1e9278e8bb436b37658b609ab00.tar.gz
Fix Command class doc typo
This commit fixes a Command class doc typo. Change-Id: Ieaf3978e588e40f8e55580d99b6dcfd36910a243
-rw-r--r--cliff/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliff/command.py b/cliff/command.py
index d81495c..86ba70d 100644
--- a/cliff/command.py
+++ b/cliff/command.py
@@ -54,6 +54,6 @@ class Command(object):
:class:`Lister` and :class:`ShowOne`) should override this
method to wrap :meth:`take_action`.
- Return the value returned by :method:`take_action` or 0.
+ Return the value returned by :meth:`take_action` or 0.
"""
return self.take_action(parsed_args) or 0