openembedded/classes/tinderclient.bbclass:
authorHolger Freyther <zecke@selfish.org>
Tue, 26 Jul 2005 22:20:25 +0000 (22:20 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 26 Jul 2005 22:20:25 +0000 (22:20 +0000)
    -A beginning new line... makes process_builds... thanks
     to mithro...

classes/tinderclient.bbclass

index dc92591..0c0c470 100644 (file)
@@ -20,10 +20,9 @@ def tinder_send_email(da, header, log):
 def tinder_send_http(da, header, log):
     from bb import data
     import httplib, urllib
-    cont = "%s\n%s" % ( header, log)
+    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)
     conn.close()