aboutsummaryrefslogtreecommitdiff
path: root/rpki/rpkid.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2015-10-16 23:07:52 +0000
committerRob Austein <sra@hactrn.net>2015-10-16 23:07:52 +0000
commit6d5fe21be4393ef644965669b4de2c976bc0096f (patch)
tree076b45bf49c706c62e8167dd4da0041725033b1c /rpki/rpkid.py
parent8734d57231a81d28ed60e417b9a6361c412c0f8b (diff)
PyLint. As usual, a lot of noise and a handful of real, albeit minor, bugs.
svn path=/branches/tk705/; revision=6123
Diffstat (limited to 'rpki/rpkid.py')
-rw-r--r--rpki/rpkid.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/rpki/rpkid.py b/rpki/rpkid.py
index 8b9626cd..bc13cd9a 100644
--- a/rpki/rpkid.py
+++ b/rpki/rpkid.py
@@ -108,8 +108,8 @@ class main(object):
import django
django.setup()
- global rpki
- import rpki.rpkidb
+ global rpki # pylint: disable=W0602
+ import rpki.rpkidb # pylint: disable=W0621
self.sql = rpki.sql.session(self.cfg)
@@ -214,7 +214,7 @@ class main(object):
def done(r_msg):
if len(r_msg) != 1:
raise rpki.exceptions.BadIRDBReply(
- "Expected exactly one PDU from IRDB: %s" % r_cms.pretty_print_content())
+ "Expected exactly one PDU from IRDB: %s" % r_msg.pretty_print_content())
callback(rpki.resource_set.resource_bag(
asn = rpki.resource_set.resource_set_as(r_msg[0].get("asn")),
v4 = rpki.resource_set.resource_set_ipv4(r_msg[0].get("ipv4")),
@@ -261,7 +261,7 @@ class main(object):
try:
return self._left_right_models
except AttributeError:
- import rpki.rpkidb.models
+ import rpki.rpkidb.models # pylint: disable=W0621
self._left_right_models = {
rpki.left_right.tag_self : rpki.rpkidb.models.Self,
rpki.left_right.tag_bsc : rpki.rpkidb.models.BSC,
@@ -326,7 +326,7 @@ class main(object):
uri = g.uri, **kw).text = g.ghostbuster.get_Base64()
for c in ca_detail.ee_certificates:
- SubElement(r_msg, rpki.left_right.tag_list_published_objects,
+ SubElement(r_msg, rpki.left_right.tag_list_published_objects,
uri = c.uri, **kw).text = c.cert.get_Base64()
def handle_list_received_resources(self, q_pdu, r_msg):
@@ -495,7 +495,7 @@ class main(object):
obj.xml_template.acknowledge(obj, q_pdu, r_msg)
else:
- raise BadQuery
+ raise rpki.exceptions.BadQuery
except (rpki.async.ExitNow, SystemExit):
raise
@@ -2804,21 +2804,21 @@ class publication_queue(object):
logger.debug("Removing publication duplicate %r", self.uris[uri])
old_pdu = self.uris.pop(uri)
self.msgs[rid].remove(old_pdu)
- hash = old_pdu.get("hash")
+ pdu_hash = old_pdu.get("hash")
elif old_hash is not None:
- hash = old_hash
+ pdu_hash = old_hash
elif old_obj is None:
- hash = None
+ pdu_hash = None
else:
- hash = rpki.x509.sha256(old_obj.get_DER()).encode("hex")
+ pdu_hash = rpki.x509.sha256(old_obj.get_DER()).encode("hex")
if new_obj is None:
- pdu = SubElement(self.msgs[rid], rpki.publication.tag_withdraw, uri = uri, hash = hash)
+ pdu = SubElement(self.msgs[rid], rpki.publication.tag_withdraw, uri = uri, hash = pdu_hash)
else:
pdu = SubElement(self.msgs[rid], rpki.publication.tag_publish, uri = uri)
pdu.text = new_obj.get_Base64()
- if hash is not None:
- pdu.set("hash", hash)
+ if pdu_hash is not None:
+ pdu.set("hash", pdu_hash)
if handler is not None:
tag = str(id(pdu))