openembedded/classes/tinderclient.bbclass:
authorHolger Freyther <zecke@selfish.org>
Wed, 3 Aug 2005 12:17:47 +0000 (12:17 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Wed, 3 Aug 2005 12:17:47 +0000 (12:17 +0000)
-Do not print that stuff... It was not meant to be pushed

classes/tinderclient.bbclass

index 168b7de..47403ac 100644 (file)
@@ -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