diff options
author | Rob Austein <sra@hactrn.net> | 2008-01-27 06:11:21 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-01-27 06:11:21 +0000 |
commit | 5c66a25dbb8ad1c283c3503e566782876179a1c3 (patch) | |
tree | 45be7843bfc7bf367afb83c7d9c31aba08c9db71 /scripts/rpki/x509.py | |
parent | 692a976a5197930ee0c9e0b5dec6f9c3bb721456 (diff) |
Debug left-right rekey and revoke operations
svn path=/scripts/rpki/left_right.py; revision=1510
Diffstat (limited to 'scripts/rpki/x509.py')
-rw-r--r-- | scripts/rpki/x509.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rpki/x509.py b/scripts/rpki/x509.py index 4d902351..c029e5f3 100644 --- a/scripts/rpki/x509.py +++ b/scripts/rpki/x509.py @@ -610,11 +610,11 @@ class SignedManifest(DER_object): def getThisUpdate(self): """Get thisUpdate value from this manifest.""" - return rpki.sundial.datetime.fromGeneralizedTime(self.get_content()) + return rpki.sundial.datetime.fromGeneralizedTime(self.get_content().thisUpdate.get()) def getNextUpdate(self): """Get nextUpdate value from this manifest.""" - return rpki.sundial.datetime.fromGeneralizedTime(self.get_content()) + return rpki.sundial.datetime.fromGeneralizedTime(self.get_content().nextUpdate.get()) def verify(self, ta): """Verify this manifest.""" |