diff options
author | Daniel Wagner-Hall <dawagner@gmail.com> | 2015-10-06 09:32:26 -0500 |
---|---|---|
committer | Daniel Wagner-Hall <dawagner@gmail.com> | 2015-10-06 09:32:26 -0500 |
commit | e0b466bcfdabcd70accdacbb72cfaf8616a9d18f (patch) | |
tree | 48c9f7754af7007971f1c5693cd38eb4892a0d3a /synapse/http | |
parent | Merge branch 'develop' into daniel/useragent (diff) | |
download | synapse-e0b466bcfdabcd70accdacbb72cfaf8616a9d18f.tar.xz |
Use space not dash as delimiter
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py index 5017801773..e0dda97ef6 100644 --- a/synapse/http/client.py +++ b/synapse/http/client.py @@ -69,7 +69,7 @@ class SimpleHttpClient(object): ) self.user_agent = hs.version_string if hs.config.user_agent_suffix: - self.user_agent += " - " + hs.config.user_agent_suffix + self.user_agent += " " + hs.config.user_agent_suffix def request(self, method, uri, *args, **kwargs): # A small wrapper around self.agent.request() so we can easily attach |