aboutsummaryrefslogtreecommitdiff
path: root/scripts/http-server.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2007-09-14 21:27:19 +0000
committerRob Austein <sra@hactrn.net>2007-09-14 21:27:19 +0000
commit8ec96ec42e7f977a238a01187106635ffe87ffe4 (patch)
tree24f02e33eea50cf19978d8b350000d598b51f810 /scripts/http-server.py
parentabe75960b1c9adcd29cfdc1ff4cb2616d178f42e (diff)
Cleanup
svn path=/scripts/http-server.py; revision=959
Diffstat (limited to 'scripts/http-server.py')
-rw-r--r--scripts/http-server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/http-server.py b/scripts/http-server.py
index dd7ec9a2..9ae9a43d 100644
--- a/scripts/http-server.py
+++ b/scripts/http-server.py
@@ -13,4 +13,4 @@ certChain.load_from_PEM(cfg.multiget(section, "https-cert"))
def handler(query, path):
return 200, "Path: %s\nQuery: %s" % (path, query)
-rpki.https.server(privateKey=privateKey, certChain=certChain, handlers={"/" : handler})
+rpki.https.server(privateKey=privateKey, certChain=certChain, handlers=handler)