summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-24 17:18:53 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-24 17:18:53 +0000
commit122d08b6ffe40de89f7e886e3d5ce6472d8d809b (patch)
tree5cccd3efc9c87068dc1a786d11db970ec9c94538 /synapse
parentUse the v2 lookup API for 3PID invites (#5897) (diff)
parentLet synctl use a config directory. (#5904) (diff)
downloadsynapse-122d08b6ffe40de89f7e886e3d5ce6472d8d809b.tar.xz
Let synctl use a config directory. (#5904)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/config/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/synapse/config/__init__.py b/synapse/config/__init__.py

index f2a5a41e92..1e76e9559d 100644 --- a/synapse/config/__init__.py +++ b/synapse/config/__init__.py
@@ -13,8 +13,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from ._base import ConfigError +from ._base import ConfigError, find_config_files -# export ConfigError if somebody does import * +# export ConfigError and find_config_files if somebody does +# import * # this is largely a fudge to stop PEP8 moaning about the import -__all__ = ["ConfigError"] +__all__ = ["ConfigError", "find_config_files"]