aboutsummaryrefslogtreecommitdiff
path: root/scripts/rpkid.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2007-11-06 16:53:33 +0000
committerRob Austein <sra@hactrn.net>2007-11-06 16:53:33 +0000
commitb435ecf3fa0f0fdd7e3a020584f60174f88819d3 (patch)
treec0973da8a6e7be2b0edbc31bd7d6e7773ec58be5 /scripts/rpkid.py
parent68e600f3c81b42011ff977f52942471e55ba128b (diff)
ChildNotFound
svn path=/scripts/rpki/exceptions.py; revision=1241
Diffstat (limited to 'scripts/rpkid.py')
-rwxr-xr-xscripts/rpkid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpkid.py b/scripts/rpkid.py
index 72a8cbcf..ec191665 100755
--- a/scripts/rpkid.py
+++ b/scripts/rpkid.py
@@ -32,7 +32,7 @@ def up_down_handler(query, path):
raise rpki.exceptions.BadContactURL, "Bad path: %s" % path
child = rpki.left_right.child_elt.sql_fetch(gctx, long(child_id))
if child is None:
- raise rpki.exceptions.NotFound, "Could not find child %s" % child_id
+ raise rpki.exceptions.ChildNotFound, "Could not find child %s" % child_id
return 200, child.serve_up_down(gctx, query)
except Exception, data:
traceback.print_exc()