diff options
author | Rob Austein <sra@hactrn.net> | 2012-10-12 22:51:07 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-10-12 22:51:07 +0000 |
commit | 72d61753b3ab0096aa66bfce357fbf8c15d4f999 (patch) | |
tree | cdca633cfd1722aa671281d7ee09d3977f0fea27 /rpkid/rpki/rpkid_tasks.py | |
parent | f91067126a35c2df1d5fff8d0061262e568114c1 (diff) |
Deobfuscate.
svn path=/branches/tk274/; revision=4774
Diffstat (limited to 'rpkid/rpki/rpkid_tasks.py')
-rw-r--r-- | rpkid/rpki/rpkid_tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/rpkid_tasks.py b/rpkid/rpki/rpkid_tasks.py index 7fbefc62..d343012e 100644 --- a/rpkid/rpki/rpkid_tasks.py +++ b/rpkid/rpki/rpkid_tasks.py @@ -256,7 +256,7 @@ class UpdateChildrenTask(AbstractTask): ca = ca_detail.ca if ca_detail.state == "active": old_resources = child_cert.cert.get_3779resources() - new_resources = irdb_resources.intersection(old_resources).intersection(ca_detail.latest_ca_cert.get_3779resources()) + new_resources = old_resources & irdb_resources & ca_detail.latest_ca_cert.get_3779resources() if new_resources.empty(): rpki.log.debug("Resources shrank to the null set, revoking and withdrawing child %s certificate SKI %s" % (child.child_handle, child_cert.cert.gSKI())) |