aboutsummaryrefslogtreecommitdiff
path: root/potpourri/rrdp-test-tool
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-08-06 22:52:28 +0000
committerRob Austein <sra@hactrn.net>2014-08-06 22:52:28 +0000
commit8032686109d62e4dbd8bb2955fbaa7b2bbdcebbb (patch)
tree7e2dfe60edb159d887bfdbde62ff52ca2bdd1394 /potpourri/rrdp-test-tool
parentcd8becc8460679775f3e7a5ef61046a17bcab3f2 (diff)
Sort out BPKI mess with rootd talking to pubd. Underlying problem is
that smoketest.py uses an obsolete BPKI model which requires different configuration than modern code. Real fix is several different major refactoring jobs (merging rootd into rpkid, merging all three YAML-based test tools...). As usual, not today. svn path=/branches/tk705/; revision=5914
Diffstat (limited to 'potpourri/rrdp-test-tool')
-rwxr-xr-xpotpourri/rrdp-test-tool2
1 files changed, 1 insertions, 1 deletions
diff --git a/potpourri/rrdp-test-tool b/potpourri/rrdp-test-tool
index d83e188d..9bdb53b5 100755
--- a/potpourri/rrdp-test-tool
+++ b/potpourri/rrdp-test-tool
@@ -120,7 +120,7 @@ class main(object):
raise RuntimeError("Can't apply deltas: current %s old %s new %s" % (cur, old, new))
for i, delta in enumerate(xml.iterchildren(tags.delta)):
serial = int(delta.get("serial"))
- print " Delta %3d serial %ds" % (i, serial)
+ print " Delta %3d serial %d" % (i, serial)
if cur != serial - 1:
raise RuntimeError("Can't apply delta: current %s delta serial %s" % (cur, serial))
for j, elt in enumerate(delta.iterchildren(tags.withdraw)):