Skip to content

Commit

Permalink
Merge pull request #44 from jens-j/master
Browse files Browse the repository at this point in the history
removed stray debug print
  • Loading branch information
revilwang authored Mar 21, 2020
2 parents 679008e + 29c741b commit 2e85adc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions python/HttpUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ def httpPost(url, resource, params, apiKey, secretKey):
conn = http.client.HTTPSConnection(url, timeout=10)

tempParams = urllib.parse.urlencode(params) if params else ''
print(tempParams)

conn.request("POST", resource, tempParams, headers)
response = conn.getresponse()
data = response.read().decode('utf-8')
Expand Down

0 comments on commit 2e85adc

Please sign in to comment.