[Piuparts-commits] [SCM] piuparts git repository branch, bikeshed, updated. 0.51-28-gec510a7

Andreas Beckmann anbe at debian.org
Wed May 22 10:46:56 UTC 2013


The following commit has been merged in the bikeshed branch:
commit ec510a7e9e5642d4da0ee1d7c2012f96ecca9f4b
Author: Andreas Beckmann <anbe at debian.org>
Date:   Wed May 22 09:56:46 2013 +0200

    p-a: consider archived bugs, too
    
    Signed-off-by: Andreas Beckmann <anbe at debian.org>

diff --git a/debian/changelog b/debian/changelog
index 3fa416a..f1770d4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,7 @@ piuparts (0.52) UNRELEASED; urgency=low
   * piuparts-master-backend.py:
   * piuparts-slave.py:
   * piuparts-analyze.py:
+    - Consider archived bugs, too.  (Closes: #669966)
   * piuparts-report.py:
   * Makefile:
     - Switch default target from 'install' to 'build'.
diff --git a/piuparts-analyze.py b/piuparts-analyze.py
index c05b637..9fdd570 100644
--- a/piuparts-analyze.py
+++ b/piuparts-analyze.py
@@ -251,12 +251,12 @@ def all_piuparts_bugs():
 
 
 def piuparts_bugs_in(package):
-    bugs = debianbts.get_bugs('package', package, 'bugs', all_piuparts_bugs())
+    bugs = debianbts.get_bugs('package', package, 'bugs', all_piuparts_bugs(), 'archive', 'both')
     bugs.sort(reverse=True)
     return bugs
 
 def piuparts_bugs_affecting(package):
-    bugs = debianbts.get_bugs('affects', package, 'bugs', all_piuparts_bugs())
+    bugs = debianbts.get_bugs('affects', package, 'bugs', all_piuparts_bugs(), 'archive', 'both')
     bugs.sort(reverse=True)
     return bugs
 

-- 
piuparts git repository



More information about the Piuparts-commits mailing list