diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-07 20:28:43 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-07 20:28:43 +0000 |
commit | c86c58f8c3a902ad3e546d8056b6fe6fc1384d1e (patch) | |
tree | c4b9a701b1b5c0dd790173992980fc6696d31ded /scripts/rpki/sql.py | |
parent | d2580a25dc496596922e0002b947689cae5418be (diff) |
Doc
svn path=/scripts/rpki/left_right.py; revision=1113
Diffstat (limited to 'scripts/rpki/sql.py')
-rw-r--r-- | scripts/rpki/sql.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/rpki/sql.py b/scripts/rpki/sql.py index bb54d355..dcd1010a 100644 --- a/scripts/rpki/sql.py +++ b/scripts/rpki/sql.py @@ -199,14 +199,14 @@ class ca_obj(sql_persistant): need to create and set up a corresponding CA object. """ self = cls() - raise NotImplementedError + raise NotImplementedError, "NIY" def delete(self, gctx): """Parent's list of current resource classes doesn't include the class corresponding to this CA, so we need to delete it (and its little dog too...). """ - raise NotImplementedError + raise NotImplementedError, "NIY" class ca_detail_obj(sql_persistant): """Internal CA detail object.""" @@ -255,7 +255,7 @@ class ca_detail_obj(sql_persistant): - Resources changed, will need to frob any children affected by shrinkage. """ - raise NotImplementedError + raise NotImplementedError, "NIY" class child_cert_obj(sql_persistant): """Certificate that has been issued to a child.""" |