summaryrefslogtreecommitdiffstats
path: root/custodia/root.py
diff options
context:
space:
mode:
Diffstat (limited to 'custodia/root.py')
-rw-r--r--custodia/root.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/custodia/root.py b/custodia/root.py
index 93b2e8b..4cde152 100644
--- a/custodia/root.py
+++ b/custodia/root.py
@@ -10,7 +10,7 @@ class Root(HTTPConsumer):
def __init__(self, *args, **kwargs):
super(Root, self).__init__(*args, **kwargs)
if self.store_name is not None:
- self.add_sub('secrets', Secrets())
+ self.add_sub('secrets', Secrets(self.config))
def GET(self, request, response):
return json.dumps({'message': "Quis custodiet ipsos custodes?"})