diff options
author | Holger Freyther <zecke@selfish.org> | 2005-07-26 22:20:25 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-26 22:20:25 +0000 |
commit | 946e28d1cb847b99b9b8d14450ca22d808f62295 (patch) | |
tree | e9e24be55511147f2928f1faa32af843ce6feba5 /classes | |
parent | a57532969f6c525a2e9b62b5542dcc9b0bb4b8ae (diff) |
openembedded/classes/tinderclient.bbclass:
-A beginning new line... makes process_builds... thanks
to mithro...
Diffstat (limited to 'classes')
-rw-r--r-- | classes/tinderclient.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
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() |