diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-30 21:25:19 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-30 21:25:19 +0000 |
commit | a704abb9ef3e67e5d34cd82bb2f10bbb4b967070 (patch) | |
tree | 474d020dbf93c9827067cfd4f4b22a3fbedc29ce | |
parent | cce3cef259ef61638fe65a4b21c27fbbbd8e1dcf (diff) |
Fix handler syntax
svn path=/scripts/irdb.py; revision=1206
-rwxr-xr-x | scripts/irdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/irdb.py b/scripts/irdb.py index 40adfd9e..2354d247 100755 --- a/scripts/irdb.py +++ b/scripts/irdb.py @@ -75,4 +75,4 @@ rpki.https.server(privateKey = rpki.x509.RSA(Auto_file = cfg.get(cfg_section, "h certChain = rpki.x509.X509_chain(Auto_files = cfg.multiget(cfg_section, "https-cert")), host = u.hostname or "localhost", port = u.port or 443, - handlers = { u.path : handler }) + handlers = ((u.path, handler),)) |