summary refs log tree commit diff
path: root/synapse/config/password.py
diff options
context:
space:
mode:
authorKent Shikama <kent@kentshikama.com>2016-07-05 19:12:53 +0900
committerKent Shikama <kent@kentshikama.com>2016-07-05 19:12:53 +0900
commit14362bf3590eb95a50201a84c8e16d5626b86249 (patch)
tree0199e01da5c5b9b48c5d9bb1bf35db2540b0dcde /synapse/config/password.py
parentFix pep8 (diff)
downloadsynapse-14362bf3590eb95a50201a84c8e16d5626b86249.tar.xz
Fix password config
Diffstat (limited to 'synapse/config/password.py')
-rw-r--r--synapse/config/password.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/password.py b/synapse/config/password.py
index 058a3a5346..00b1ea3df9 100644
--- a/synapse/config/password.py
+++ b/synapse/config/password.py
@@ -23,7 +23,7 @@ class PasswordConfig(Config):
     def read_config(self, config):
         password_config = config.get("password_config", {})
         self.password_enabled = password_config.get("enabled", True)
-        self.pepper = password_config.get("pepper", "")
+        self.password_pepper = password_config.get("pepper", "")
 
     def default_config(self, config_dir_path, server_name, **kwargs):
         return """