From: Holger Freyther Date: Tue, 26 Jul 2005 22:20:25 +0000 (+0000) Subject: openembedded/classes/tinderclient.bbclass: X-Git-Tag: Release-2010-05/1~9453^2~4017^2~19^2~1^2~9 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=946e28d1cb847b99b9b8d14450ca22d808f62295;p=openembedded.git openembedded/classes/tinderclient.bbclass: -A beginning new line... makes process_builds... thanks to mithro... --- diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass index dc92591133..0c0c470bb8 100644 --- a/classes/tinderclient.bbclass +++ b/classes/tinderclient.bbclass @@ -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()