Skip to content

Commit

Permalink
removed stray debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-j committed Oct 8, 2019
1 parent a9103cb commit 29c741b
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 29c741b

Please sign in to comment.