diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-09-22 13:13:07 +0100 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-09-22 13:13:07 +0100 |
commit | 6d7f291b93c363ecee7a3f1e5f5e2cdf81a0fbae (patch) | |
tree | a4bb28b8525e42c8da964283bfc9415b01520727 /synapse/config | |
parent | Implement configurable stats reporting (diff) | |
download | synapse-6d7f291b93c363ecee7a3f1e5f5e2cdf81a0fbae.tar.xz |
Front-load spaces
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/_base.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py index b9983f72a2..ceef309afc 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -27,13 +27,13 @@ class ConfigError(Exception): class Config(object): stats_reporting_begging_spiel = ( - "We would really appreciate it if you could help our project out by " - "reporting anonymized usage statistics from your homeserver. Only very " - "basic aggregate data (e.g. number of users) will be reported, but it " - "helps us to track the growth of the Matrix community, and helps us to " - "make Matrix a success, as well as to convince other networks that they " - "should peer with us.\n" - "Thank you." + "We would really appreciate it if you could help our project out by" + " reporting anonymized usage statistics from your homeserver. Only very" + " basic aggregate data (e.g. number of users) will be reported, but it" + " helps us to track the growth of the Matrix community, and helps us to" + " make Matrix a success, as well as to convince other networks that they" + " should peer with us." + "\nThank you." ) @staticmethod |