diff options
-rw-r--r-- | classes/tinderclient.bbclass | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass index 3c88b2ac63..168b7dec4e 100644 --- a/classes/tinderclient.bbclass +++ b/classes/tinderclient.bbclass @@ -1,5 +1,5 @@ def tinder_tz_offset(off): - # get the offset. Either it is a number like + # get the offset.n minutes Either it is a number like # +200 or -300 try: return int(off) @@ -42,9 +42,16 @@ def tinder_send_http(da, header, log): import httplib, urllib cont = "\n%s\n%s" % ( header, log) headers = {"Content-type": "multipart/form-data" } + print cont conn = httplib.HTTPConnection(data.getVar('TINDER_HOST',da, True)) conn.request("POST", data.getVar('TINDER_URL',da,True), cont, headers) + + resp = conn.getresponse() + print resp.status, resp.reason + data = resp.read() + print data + conn.close() |