diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-05-22 10:11:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 10:11:50 +0100 |
commit | 66a564c859c035c273c8feb25c624473055f1d78 (patch) | |
tree | f3f46d11f34fc3527deb65228d72b81fea205b16 /synapse/config/metrics.py | |
parent | Retry to sync out of sync device lists (#7453) (diff) | |
download | synapse-66a564c859c035c273c8feb25c624473055f1d78.tar.xz |
Fix some DETECTED VIOLATIONS in the config file (#7550)
consistency ftw
Diffstat (limited to 'synapse/config/metrics.py')
-rw-r--r-- | synapse/config/metrics.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/metrics.py b/synapse/config/metrics.py index 6f517a71d0..6aad0d37c0 100644 --- a/synapse/config/metrics.py +++ b/synapse/config/metrics.py @@ -93,10 +93,11 @@ class MetricsConfig(Config): #known_servers: true # Whether or not to report anonymized homeserver usage statistics. + # """ if report_stats is None: - res += "# report_stats: true|false\n" + res += "#report_stats: true|false\n" else: res += "report_stats: %s\n" % ("true" if report_stats else "false") |