diff options
author | Rob Austein <sra@hactrn.net> | 2011-12-15 15:19:13 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-12-15 15:19:13 +0000 |
commit | 30923f4cb2ae26aca367c01fab6ead0b59e59db9 (patch) | |
tree | 9fed81f5f14d415bc4c6414e8f573ed08da70d95 /rpkid/rpkic.py | |
parent | fc2941d92286ca1e01400c3a46abbd88b411f6f8 (diff) |
Checkpoint. Add rpki.irdb.models.CertificateManager() to consolidate
BPKI object creation logic. Move CSV code out of rpkic.
svn path=/branches/tk100/; revision=4122
Diffstat (limited to 'rpkid/rpkic.py')
-rw-r--r-- | rpkid/rpkic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpkid/rpkic.py b/rpkid/rpkic.py index d8f68627..6ef3a67b 100644 --- a/rpkid/rpkic.py +++ b/rpkid/rpkic.py @@ -1,7 +1,7 @@ """ $Id$ -Copyright (C) 2010 Internet Systems Consortium ("ISC") +Copyright (C) 2010-2011 Internet Systems Consortium ("ISC") Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -17,5 +17,5 @@ PERFORMANCE OF THIS SOFTWARE. """ if __name__ == "__main__": - import rpki.myrpki - rpki.myrpki.main() + import rpki.rpkic + rpki.rpkic.main() |