diff options
| author | Ryan Lane <laner@controller> | 2010-12-08 00:08:47 +0000 |
|---|---|---|
| committer | Ryan Lane <laner@controller> | 2010-12-08 00:08:47 +0000 |
| commit | abdb8080e365a584c64ce6562934eefb750568ba (patch) | |
| tree | fbedbb6360fb6ffdc53865236b6ee151276dbb83 /nova/auth | |
| parent | 45324fc9f15135437051eaaedda68a5ef1f0da7a (diff) | |
| download | nova-abdb8080e365a584c64ce6562934eefb750568ba.tar.gz nova-abdb8080e365a584c64ce6562934eefb750568ba.tar.xz nova-abdb8080e365a584c64ce6562934eefb750568ba.zip | |
Clarifying previously commited exception message
Diffstat (limited to 'nova/auth')
| -rw-r--r-- | nova/auth/ldapdriver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/auth/ldapdriver.py b/nova/auth/ldapdriver.py index 5727c8da3..45ea0683d 100644 --- a/nova/auth/ldapdriver.py +++ b/nova/auth/ldapdriver.py @@ -159,7 +159,7 @@ class LdapDriver(object): self.conn.modify_s(self.__uid_to_dn(name), attr) return self.get_user(name) else: - raise exception.NotFound("User %s doesn't exist" % name) + raise exception.NotFound("LDAP object for %s doesn't exist" % name) else: attr = [ ('objectclass', ['person', |
