You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2019/08/04 19:26:14 UTC

svn commit: r1864397 - /comdev/reporter.apache.org/trunk/site/wizard/whimsy.py

Author: humbedooh
Date: Sun Aug  4 19:26:14 2019
New Revision: 1864397

URL: http://svn.apache.org/viewvc?rev=1864397&view=rev
Log:
- add unicode marker
- remove the author tag, whimsy has this

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/whimsy.py

Modified: comdev/reporter.apache.org/trunk/site/wizard/whimsy.py
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/whimsy.py?rev=1864397&r1=1864396&r2=1864397&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/whimsy.py (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/whimsy.py Sun Aug  4 19:26:14 2019
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# -*- coding: UTF-8 -*-
 """ script for publishing a report to whimsy """
 import os
 import sys
@@ -28,7 +29,7 @@ def main():
          'agenda': agenda,
          'project': project,
          'report': report,
-         'message': "Publishing %s report via reporter.a.o (submitted by %s)" % (project, USER),
+         'message': "Publishing %s report via reporter.a.o" % project,
         }
         try:
             rv = requests.post(WHIMSY_URL, headers = {'Authorization': BASIC_AUTH, "Content-Type": "application/json"}, json = js)