diff options
author | David Baker <dbkr@matrix.org> | 2014-11-14 13:23:17 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-14 13:24:12 +0000 |
commit | 933ce760576e9c30919ea0a2d0ca231c7b3cbd59 (patch) | |
tree | ee33d4a08a04e51c10791022dba04354a34f15d3 /synapse | |
parent | Use modelService for getting current presence state rather than RoomControlle... (diff) | |
download | synapse-933ce760576e9c30919ea0a2d0ca231c7b3cbd59.tar.xz |
Adding --generate-config will not help if the user has not specified a config file.
Diffstat (limited to 'synapse')
-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 8ebd2eba4a..322a18fbdd 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -36,7 +36,7 @@ class Config(object): if file_path is None: raise ConfigError( "Missing config for %s." - " Try running again with --generate-config" + " You must specify a config file. You can do this with the -c or --config-path option." % (config_name,) ) if not os.path.exists(file_path): |