do not decode data within _curl() (#1007)

This commit is contained in:
Taylor Boyko
2020-07-13 16:41:52 -07:00
committed by GitHub
parent 361b18bcc5
commit f39f98ccf9

View File

@@ -104,7 +104,6 @@ class MWA2APIRepo(Repo):
stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, err = proc.communicate()
output = output.decode('UTF-8')
err = err.decode('UTF-8')
if DEBUG:
# save our curl_directives for debugging