diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-28 10:37:17 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-28 10:37:17 +0100 |
commit | b442217d918a50ae57a932a955fd577240607e92 (patch) | |
tree | 167e6733eb200b11ea7e30d5ded78439552a1613 | |
parent | Clean up scripts/ (diff) | |
download | synapse-b442217d918a50ae57a932a955fd577240607e92.tar.xz |
Actually add config path
-rw-r--r-- | synapse/config/_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py index d01235d31f..1a6784a714 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -182,6 +182,8 @@ class Config(object): ) % (entry_path, ) continue + files.add(config_path) + config_files.extend(sorted(files)) else: config_files.append(config_path) |