From: Holger Freyther Date: Wed, 3 Aug 2005 12:17:47 +0000 (+0000) Subject: openembedded/classes/tinderclient.bbclass: X-Git-Tag: Release-2010-05/1~9453^2~3994^2~24 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49bcfd71fd59b583b6dbbad2626e48c5fad9b692;p=openembedded.git openembedded/classes/tinderclient.bbclass: -Do not print that stuff... It was not meant to be pushed --- 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