Use space not dash as delimiter

pull/292/head
Daniel Wagner-Hall 2015-10-06 09:53:33 -05:00
parent e0b466bcfd
commit 492beb62a8
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class SimpleHttpClient(object):
) )
self.user_agent = hs.version_string self.user_agent = hs.version_string
if hs.config.user_agent_suffix: 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): def request(self, method, uri, *args, **kwargs):
# A small wrapper around self.agent.request() so we can easily attach # A small wrapper around self.agent.request() so we can easily attach