You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hb...@apache.org on 2015/05/09 12:46:41 UTC

svn commit: r1678476 - /comdev/projects.apache.org/scripts/import/parsecommittees.py

Author: hboutemy
Date: Sat May  9 10:46:41 2015
New Revision: 1678476

URL: http://svn.apache.org/r1678476
Log:
improved message in case of TLP found in chairs.json but not committee-info.txt

Modified:
    comdev/projects.apache.org/scripts/import/parsecommittees.py

Modified: comdev/projects.apache.org/scripts/import/parsecommittees.py
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/scripts/import/parsecommittees.py?rev=1678476&r1=1678475&r2=1678476&view=diff
==============================================================================
--- comdev/projects.apache.org/scripts/import/parsecommittees.py (original)
+++ comdev/projects.apache.org/scripts/import/parsecommittees.py Sat May  9 10:46:41 2015
@@ -55,6 +55,6 @@ with open("../../site/json/foundation/co
 chairs = json.load(open("../../site/json/foundation/chairs.json"))
 for chair in chairs:
     if not chair in c:
-        print("WARN: %s is not in committee-info: retired?" % chair)
+        print("WARN: %s is in http://www.apache.org/foundation/ but not in committee-info.txt: typo somewhere or retirement in progress?" % chair)
 
 print("found %s TLPs in committee_info.txt" % x)
\ No newline at end of file