[llvm-commits] [zorg] r148477 - /zorg/trunk/lnt/lnt/server/reporting/runs.py

Daniel Dunbar daniel at zuster.org
Thu Jan 19 07:51:07 PST 2012


Author: ddunbar
Date: Thu Jan 19 09:51:07 2012
New Revision: 148477

URL: http://llvm.org/viewvc/llvm-project?rev=148477&view=rev
Log:
[lnt/v0.4]: Remove the date from subjects, on request from Chad.
 - This means some apps will end up threading the mails from a single machine
   which can be useful (or annoying, depending on your perspective, but Chad
   wins here).

Modified:
    zorg/trunk/lnt/lnt/server/reporting/runs.py

Modified: zorg/trunk/lnt/lnt/server/reporting/runs.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/lnt/lnt/server/reporting/runs.py?rev=148477&r1=148476&r2=148477&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/server/reporting/runs.py (original)
+++ zorg/trunk/lnt/lnt/server/reporting/runs.py Thu Jan 19 09:51:07 2012
@@ -105,8 +105,7 @@
                                          cr.get_value_status()))
 
     # Begin report generation...
-    subject = """%s test results: %s""" % (
-        machine.name, run.start_time.strftime('%Y-%m-%d %H:%M:%S %Z PST'))
+    subject = """%s test results""" % (machine.name,)
     report = StringIO.StringIO()
     html_report = StringIO.StringIO()
 





More information about the llvm-commits mailing list