aboutsummaryrefslogtreecommitdiffstats
path: root/classes/tinderclient.bbclass
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2005-08-03 12:17:47 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-03 12:17:47 +0000
commit49bcfd71fd59b583b6dbbad2626e48c5fad9b692 (patch)
treecb98726fd546568d793d6e0a89c1e90a542189bd /classes/tinderclient.bbclass
parent3a9a605ecf8e9bd10f3bec2b640aeb9e05eb4c55 (diff)
downloadopenembedded-49bcfd71fd59b583b6dbbad2626e48c5fad9b692.tar.gz
openembedded/classes/tinderclient.bbclass:
-Do not print that stuff... It was not meant to be pushed
Diffstat (limited to 'classes/tinderclient.bbclass')
-rw-r--r--classes/tinderclient.bbclass2
1 files changed, 0 insertions, 2 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass
index 168b7dec4e..47403ac53c 100644
--- a/classes/tinderclient.bbclass
+++ b/classes/tinderclient.bbclass
@@ -42,13 +42,11 @@ 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