The branch, master has been updated
via 4bfd615 Fix nasty gram sending.
from cfdeca5 Properly encode dictionary elements.
http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 4bfd6157b74a824ed22549cf1f22be31ca6f5243
Author: Jelmer Vernooij <[email protected]>
Date: Sat Nov 13 20:11:15 2010 +0100
Fix nasty gram sending.
-----------------------------------------------------------------------
Summary of changes:
import-and-analyse.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/import-and-analyse.py b/import-and-analyse.py
index 3891f1e..d88ef43 100755
--- a/import-and-analyse.py
+++ b/import-and-analyse.py
@@ -87,7 +87,7 @@ The build may have been broken by one of the following
commits:
msg["From"] = "\"Build Farm\" <[email protected]>"
msg["To"] = ",".join(recipients)
if not opts.dry_run:
- smtp.send(msg["From"], [msg["To"]], msg.as_string())
+ smtp.sendmail(msg["From"], [msg["To"]], msg.as_string())
else:
print msg.as_string()
--
build.samba.org