Author: humbedooh
Date: Fri Mar  6 18:01:32 2015
New Revision: 1664690

URL: http://svn.apache.org/r1664690
Log:
don't break EVERYTHING

Modified:
    comdev/reporter.apache.org/readjira.py

Modified: comdev/reporter.apache.org/readjira.py
URL: 
http://svn.apache.org/viewvc/comdev/reporter.apache.org/readjira.py?rev=1664690&r1=1664689&r2=1664690&view=diff
==============================================================================
--- comdev/reporter.apache.org/readjira.py (original)
+++ comdev/reporter.apache.org/readjira.py Fri Mar  6 18:01:32 2015
@@ -36,7 +36,8 @@ def getJIRAS(project):
 
 for project in myfiles:
     jiraname = project.replace(".json", "")
-    print("Refreshing JIRA stats for " + jiraname)
-    getJIRAS(jiraname)
-    time.sleep(2)
+    if jiraname != "projects":
+        print("Refreshing JIRA stats for " + jiraname)
+        getJIRAS(jiraname)
+        time.sleep(2)
     
\ No newline at end of file


Reply via email to