You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by se...@apache.org on 2018/03/25 10:05:14 UTC

svn commit: r1827703 - /comdev/reporter.apache.org/trunk/scripts/parsepmcs.py

Author: sebb
Date: Sun Mar 25 10:05:14 2018
New Revision: 1827703

URL: http://svn.apache.org/viewvc?rev=1827703&view=rev
Log:
Web page may have spurious spaces

Modified:
    comdev/reporter.apache.org/trunk/scripts/parsepmcs.py

Modified: comdev/reporter.apache.org/trunk/scripts/parsepmcs.py
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/scripts/parsepmcs.py?rev=1827703&r1=1827702&r2=1827703&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/scripts/parsepmcs.py (original)
+++ comdev/reporter.apache.org/trunk/scripts/parsepmcs.py Sun Mar 25 10:05:14 2018
@@ -253,7 +253,7 @@ for c in sorted(chairs):
     if not c in web:
         chairDiffs.append("Missing from web page \n| V.P., Apache %s | %s |" % (c, chairs[c]))
     else:
-        if not chairs[c] == web[c]:
+        if not chairs[c] == web[c].strip():
             chairDiffs.append("Mismatch: Apache %s ctte %s web %s" % (c, chairs[c], web[c]))
         
 DEST='Site Development <si...@apache.org>'