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/12/16 11:24:18 UTC

svn commit: r1871656 - /comdev/reporter.apache.org/trunk/scripts/rapp/overview.py

Author: humbedooh
Date: Mon Dec 16 11:24:18 2019
New Revision: 1871656

URL: http://svn.apache.org/viewvc?rev=1871656&view=rev
Log:
move down so allpmcs are defined

Modified:
    comdev/reporter.apache.org/trunk/scripts/rapp/overview.py

Modified: comdev/reporter.apache.org/trunk/scripts/rapp/overview.py
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/scripts/rapp/overview.py?rev=1871656&r1=1871655&r2=1871656&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/scripts/rapp/overview.py (original)
+++ comdev/reporter.apache.org/trunk/scripts/rapp/overview.py Mon Dec 16 11:24:18 2019
@@ -48,15 +48,16 @@ def run(environ, user):
                 dumps['kibble'] =v
     
     
-    # Check for filed reports
-    dumps['filed'] = {}
-    for k in allpmcs:
-        f = rapp.whimsy.agenda(environ, user, k)
-        dumps['filed'][k] = f.get('filed', False)
-    
     # Set personalized vars, dump
     if dumps and user:
         _ddata, allpmcs, _health = pdata.getProjectData()
+        
+        # Check for filed reports
+        dumps['filed'] = {}
+        for k in allpmcs:
+            f = rapp.whimsy.agenda(environ, user, k)
+            dumps['filed'][k] = f.get('filed', False)
+        
         dumps['you'] = committers[user]
         dumps['all'] = sorted(allpmcs)
         dumps['pmcs'] = sorted(groups)