summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-11-12 00:46:04 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-11-12 00:46:04 -0700
commit014af24731ff39520a9635694ed99dc9d09669c9 (patch)
tree3e861a7ba9f8ba9d07033fad6827920dfbc46c49 /ipalib/constants.py
parentf3869d7b24f65ca04494ff756e092d7aedd67a5c (diff)
downloadfreeipa-014af24731ff39520a9635694ed99dc9d09669c9.tar.gz
freeipa-014af24731ff39520a9635694ed99dc9d09669c9.tar.xz
freeipa-014af24731ff39520a9635694ed99dc9d09669c9.zip
Changed calling signature of output_for_cli(); started work on 'textui' backend plugin
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r--ipalib/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index b8f93d211..6210e6c8f 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -22,6 +22,8 @@
All constants centralized in one file.
"""
+# Used for a tab (or indentation level) when formatting for CLI:
+CLI_TAB = ' ' # Two spaces
# The section to read in the config files, i.e. [global]
CONFIG_SECTION = 'global'