Skip to content
Snippets Groups Projects
Commit a80ef851 authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix previous merge to s/version_string/user_agent/

parent 347aa3c2
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,7 @@ class SimpleHttpClient(object):
"PUT",
uri.encode("ascii"),
headers=Headers({
b"User-Agent": [self.version_string],
b"User-Agent": [self.user_agent],
"Content-Type": ["application/json"]
}),
bodyProducer=FileBodyProducer(StringIO(json_str))
......@@ -231,7 +231,7 @@ class SimpleHttpClient(object):
"GET",
uri.encode("ascii"),
headers=Headers({
b"User-Agent": [self.version_string],
b"User-Agent": [self.user_agent],
})
)
......
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