You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2011/01/12 15:10:05 UTC

svn commit: r1058150 - /subversion/trunk/tools/po/l10n-report.py

Author: danielsh
Date: Wed Jan 12 14:10:05 2011
New Revision: 1058150

URL: http://svn.apache.org/viewvc?rev=1058150&view=rev
Log:
* tools/po/l10n-report.py:
    Force a blank line at the end of the headers, since I didn't
    find where else that is done.

Modified:
    subversion/trunk/tools/po/l10n-report.py

Modified: subversion/trunk/tools/po/l10n-report.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/po/l10n-report.py?rev=1058150&r1=1058149&r2=1058150&view=diff
==============================================================================
--- subversion/trunk/tools/po/l10n-report.py (original)
+++ subversion/trunk/tools/po/l10n-report.py Wed Jan 12 14:10:05 2011
@@ -201,6 +201,7 @@ def main():
         ]);
 
         msg = "\n".join((email_from, email_to, email_sub, x_headers,
+                        "", # blank line at end of headers
                         title, format_head, format_line, body))
 
         server.sendmail(email_from, email_to, msg)