aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-06-03 01:19:01 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-06-03 01:19:01 +0800
commitfc41ea7f6f24caf6ef141b06cf71492373bbba82 (patch)
tree4b1de68548a1d63abea01bbdb1deabce4d0ebad9
parentafcd8e15a05497390826f1af2d92566729a3470c (diff)
downloadgsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.tar
gsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.tar.gz
gsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.tar.bz2
gsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.tar.lz
gsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.tar.xz
gsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.tar.zst
gsoc2013-empathy-fc41ea7f6f24caf6ef141b06cf71492373bbba82.zip
Fix sending emails from release script
svn path=/trunk/; revision=1143
-rwxr-xr-xrelease.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release.py b/release.py
index d0c1bb2ae..a41eee753 100755
--- a/release.py
+++ b/release.py
@@ -274,8 +274,8 @@ class Project:
notes = self.get_release_notes()
cmd = 'xdg-email ' \
' --cc telepathy@lists.freedesktop.org' \
- ' --subject ANNOUNCE: Empathy %s' \
- ' --body %s' \
+ ' --subject "ANNOUNCE: Empathy %s"' \
+ ' --body "%s"' \
' gnome-announce-list@gnome.org' % (self.package_version, notes)
self.exec_cmd(cmd)