summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-02-16 08:47:42 -0500
committerRob Crittenden <rcritten@redhat.com>2011-02-16 08:47:42 -0500
commitc4206d646242728ed03d6e9edb92a1eae55a44e1 (patch)
tree2706102ada28e76dbd7143b22c24bf94af8c3177
parentb249cb242730afe6a469419b70789f65a9ead972 (diff)
downloadfreeipa-c4206d646242728ed03d6e9edb92a1eae55a44e1.tar.gz
freeipa-c4206d646242728ed03d6e9edb92a1eae55a44e1.tar.xz
freeipa-c4206d646242728ed03d6e9edb92a1eae55a44e1.zip
Fix typo in rewording of help for the user module.
I was too quick on the patch push and didn't see a nack on the wording.
-rw-r--r--ipalib/plugins/user.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/plugins/user.py b/ipalib/plugins/user.py
index 343f6883c..2c9ec1fa9 100644
--- a/ipalib/plugins/user.py
+++ b/ipalib/plugins/user.py
@@ -32,8 +32,8 @@ Disabling a user account prevents that user from obtaining new Kerberos
credentials. It does not invalidate any credentials that have already
been issued.
-The password management is not a part of this modules. For more information
-about this topic please see 'ipa help passwd'.
+Password management is not a part of this module. For more information
+about this topic please see: ipa help passwd
EXAMPLES:
@@ -232,7 +232,7 @@ class user(LDAPObject):
else:
norm_email.append(m)
return norm_email
-
+
return email
api.register(user)
@@ -295,7 +295,7 @@ class user_add(LDAPCreate):
error_msg = 'Default group for new users not found.'
raise errors.NotFound(reason=error_msg)
entry_attrs['gidnumber'] = group_attrs['gidnumber']
-
+
if 'mail' in entry_attrs:
entry_attrs['mail'] = self.obj._normalize_email(entry_attrs['mail'], config)