summary refs log tree commit diff
path: root/synapse/config/key.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-04-30 16:52:57 +0100
committerMark Haines <mark.haines@matrix.org>2015-04-30 16:52:57 +0100
commit2f1348f3395ba44cece492205ce7fa87ac519bee (patch)
tree57c2783ca4b2a39176385fd6720fe98fdbc17468 /synapse/config/key.py
parentDon't break when sizes or durations are given as integers (diff)
downloadsynapse-2f1348f3395ba44cece492205ce7fa87ac519bee.tar.xz
Write a default log_config when generating config
Diffstat (limited to 'synapse/config/key.py')
-rw-r--r--synapse/config/key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/key.py b/synapse/config/key.py
index 4a18a94775..27e0d2906e 100644
--- a/synapse/config/key.py
+++ b/synapse/config/key.py
@@ -107,7 +107,7 @@ class KeyConfig(Config):
                 )
         return keys
 
-    def generate_keys(self, config):
+    def generate_files(self, config):
         signing_key_path = config["signing_key_path"]
         if not os.path.exists(signing_key_path):
             with open(signing_key_path, "w") as signing_key_file: