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

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

Author: hwright
Date: Mon Dec 27 14:26:04 2010
New Revision: 1053076

URL: http://svn.apache.org/viewvc?rev=1053076&view=rev
Log:
* tools/po/l10n-report.py
  (l10nReport): Remove default TO address, and update FROM to apache domain.
  (main): Update return email address to apache domain.

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=1053076&r1=1053075&r2=1053076&view=diff
==============================================================================
--- subversion/trunk/tools/po/l10n-report.py (original)
+++ subversion/trunk/tools/po/l10n-report.py Mon Dec 27 14:26:04 2010
@@ -59,9 +59,9 @@ def usage_and_exit(errmsg=None):
 
 
 class l10nReport:
-    def __init__(self, to_email_id="bhuvan@collab.net"):
+    def __init__(self, to_email_id=""):
         self.to_email_id = to_email_id
-        self.from_email_id = "<de...@subversion.tigris.org>"
+        self.from_email_id = "<de...@subversion.apache.org>"
 
     def safe_command(self, cmd_and_args, cmd_in=""):
         [stdout, stderr] = subprocess.Popen(cmd_and_args, \
@@ -178,7 +178,7 @@ def main():
         print(po_format)
 
     if to_email_id:
-        email_from = "From: SVN DEV <no...@subversion.tigris.org>"
+        email_from = "From: SVN DEV <no...@subversion.apache.org>"
         email_to = "To: %s" % to_email_id
         email_sub = "Subject: [l10n] Translation status report for %s r%s" \
                      % (branch_name, wc_version)