status-report-scripts pyGetReviewByFlags,1.16,1.17

Jason ティビツ (tibbs) fedora-extras-commits at redhat.com
Thu Aug 14 22:49:34 UTC 2008


Author: tibbs

Update of /cvs/fedora/status-report-scripts
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12579

Modified Files:
	pyGetReviewByFlags 
Log Message:
Multicall works again, so turn that back on.



Index: pyGetReviewByFlags
===================================================================
RCS file: /cvs/fedora/status-report-scripts/pyGetReviewByFlags,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- pyGetReviewByFlags	8 Aug 2008 22:50:05 -0000	1.16
+++ pyGetReviewByFlags	14 Aug 2008 22:49:34 -0000	1.17
@@ -131,15 +131,16 @@
         alldeps |= bugdata[bug.bug_id]['depends']
 
     # Now look up info on everything that blocks any review ticket, so we can check their status
-#    for bug in filter(None, bz.getbugssimple(alldeps)):
-#        if bug.bug_status == 'CLOSED':
-#            closeddeps.add(str(bug.bug_id))
+    for bug in filter(None, bz.getbugssimple(alldeps)):
+        if bug.bug_status == 'CLOSED':
+            closeddeps.add(str(bug.bug_id))
 
     def opendep(id): return id not in closeddeps
     for bug in bugs:
         if bug.bug_status == "CLOSED":
             closedCnt += 1
-        elif bug.status_whiteboard.find('NotReady') >= 0 or filter(opendep, bugdata[bug.bug_id]['depends']):
+        elif flag == ' ' and (bug.status_whiteboard.find('NotReady') >= 0
+                or filter(opendep, bugdata[bug.bug_id]['depends'])):
             hiddenCnt += 1
             bugdata[bug.bug_id]['hidden'] = 1
         else:




More information about the fedora-extras-commits mailing list