Skip to content
Snippets Groups Projects
Commit 492beb62 authored by Daniel Wagner-Hall's avatar Daniel Wagner-Hall
Browse files

Use space not dash as delimiter

parent e0b466bc
No related branches found
No related tags found
No related merge requests found
......@@ -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 = "%s %s" % (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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment