diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-09-07 15:06:46 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-09-07 15:06:46 +0100 |
commit | 73e4ad4b8b24bb99a8ede4bda8ac2263b68cad5e (patch) | |
tree | 268463223a4dbed35244b83ffb7b767330f8416e /synapse/config | |
parent | update logger to match new ambiguous script name... (diff) | |
parent | DEPENDENCY_LINKS was turned to a list (diff) | |
download | synapse-73e4ad4b8b24bb99a8ede4bda8ac2263b68cad5e.tar.xz |
Merge branch 'master' into develop
Conflicts: setup.py
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py index 1a6784a714..8a75c48733 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -182,7 +182,7 @@ class Config(object): ) % (entry_path, ) continue - files.add(config_path) + files.append(entry_path) config_files.extend(sorted(files)) else: |