summaryrefslogtreecommitdiffstats
path: root/ipalib/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/base.py')
-rw-r--r--ipalib/base.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ipalib/base.py b/ipalib/base.py
index 2769efd3b..ece446cff 100644
--- a/ipalib/base.py
+++ b/ipalib/base.py
@@ -132,8 +132,12 @@ class Named(object):
return self.__class__.__name__
name = property(__get_name)
+ def __get_cli(self):
+ return self.name.replace('_', '-')
+ cli = property(__get_cli)
+
def __get_doc(self):
- return self.__class__.__doc__
+ return self.__class__.__doc__.strip()
doc = property(__get_doc)