Author: hboutemy
Date: Fri May 8 16:16:46 2015
New Revision: 1678389
URL: http://svn.apache.org/r1678389
Log:
enable parsing of TLPs established in 2015
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=1678389&r1=1678388&r2=1678389&view=diff
==============================================================================
--- comdev/projects.apache.org/scripts/import/parsecommittees.py (original)
+++ comdev/projects.apache.org/scripts/import/parsecommittees.py Fri May 8
16:16:46 2015
@@ -16,15 +16,15 @@ try:
except:
print("You will need to download committee-info.txt and place it in this
folder first")
os.exit(1)
-
+
x = 0
-for year in range(1995,2015):
+for year in range(1995,2016):
for month in range(1,13):
committees["%04u-%02u" % (year, month)] = []
for pmc in re.findall(r"\* .+?\s+\(est\. [0-9/]+[^\r\n]+", data, re.UNICODE |
re.IGNORECASE):
-
+
#print(pmc)
m = re.search(r"\* (.+?)\s+\(est. ([0-9]+)/([0-9]+)", pmc, re.IGNORECASE |
re.UNICODE)
if m: