diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-22 21:02:43 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-22 21:02:43 -0700 |
commit | 01cae56e0a19876cf6a614469c0c5e6fb73170e6 (patch) | |
tree | 8bfcfaebea1f23c7de8217520c96e2c3b76268eb /ipalib/constants.py | |
parent | 6b055b435f93bf9b63ee9b3b2fdd6f082dacc07b (diff) | |
download | freeipa-01cae56e0a19876cf6a614469c0c5e6fb73170e6.tar.gz freeipa-01cae56e0a19876cf6a614469c0c5e6fb73170e6.tar.xz freeipa-01cae56e0a19876cf6a614469c0c5e6fb73170e6.zip |
Some more reorganization in Env and added class docstring to Env with lots of examples
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r-- | ipalib/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py index c74808d6..dc23b109 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -36,8 +36,8 @@ OVERRIDE_ERROR = 'cannot override %s.%s value %r with %r' # Standard format for AttributeError message when a read-only attribute is # already locked: -LOCK_ERROR = 'locked: cannot set %s.%s to %r' -DEL_ERROR = 'locked: cannot set %s.%s to %r' +SET_ERROR = 'locked: cannot set %s.%s to %r' +DEL_ERROR = 'locked: cannot del %s.%s' # Used for a tab (or indentation level) when formatting for CLI: CLI_TAB = ' ' # Two spaces |