diff options
author | Rob Crittenden <rcritten@redhat.com> | 2009-05-08 11:15:45 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-05-13 14:16:44 -0400 |
commit | 1c31b5bc08a2f4bc55678c69eb67508122480906 (patch) | |
tree | 0166354ab5bb1e8bb4b664efab23bb86e770556a /ipalib/plugins/dns2.py | |
parent | de88954b91f49387421f68a056a2e12cb6e94e7e (diff) | |
download | freeipa.git-1c31b5bc08a2f4bc55678c69eb67508122480906.tar.gz freeipa.git-1c31b5bc08a2f4bc55678c69eb67508122480906.tar.xz freeipa.git-1c31b5bc08a2f4bc55678c69eb67508122480906.zip |
Add a reason to the NotFound exception so we can provide more robust errors
Diffstat (limited to 'ipalib/plugins/dns2.py')
-rw-r--r-- | ipalib/plugins/dns2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/dns2.py b/ipalib/plugins/dns2.py index b478a5bc..35f9b698 100644 --- a/ipalib/plugins/dns2.py +++ b/ipalib/plugins/dns2.py @@ -597,7 +597,7 @@ class dns2_del_rr(Command): try: attr_value.remove(data) except ValueError: - raise errors.NotFound(message=u'resource record not found') + raise errors.NotFound(reason=u'resource record not found') # check if it's worth to keep this entry in LDAP if 'idnsZone' not in entry_attrs['objectclass']: |