]> git.donarmstrong.com Git - debbugs.git/commitdiff
* Indicate which bug is being blocked in after blocking
authorDon Armstrong <don@volo>
Thu, 6 Jul 2006 00:12:09 +0000 (17:12 -0700)
committerDon Armstrong <don@volo>
Thu, 6 Jul 2006 00:12:09 +0000 (17:12 -0700)
debian/changelog
scripts/service.in

index 9c3c10f98a40ffe8e10cfb851416cb2328a30329..8e3fb42df2a5a2d46b7daf9db8039d731053bb80 100644 (file)
@@ -115,6 +115,7 @@ debbugs (2.4.2) UNRELEASED; urgency=low
     - Add X-$gProject-PR-Source: line (closes: #219230)
     - Document nnn.*@foobar addresses (closes: #188670)
     - Support cloned bugs in control blocking (closes: #337329)
+    - Indicate which bugs are blocked after blocking (closes: #367496)
   
   
  -- Colin Watson <cjwatson@debian.org>  Fri, 20 Jun 2003 18:57:25 +0100
index 19527b1d66acbe55784a35a948d41afc68ce1298..50bb4cd1485ecd44f5b8e8cb7e6740502779b3b2 100755 (executable)
@@ -768,11 +768,11 @@ END
                &transcript("Was blocked by: $data->{blockedby}\n");
            }
            if ($addsub eq "set") {
-               $action= "Blocking bugs set to: " . join(", ", @okayblockers);
+               $action= "Blocking bugs of $bugnum set to: " . join(", ", @okayblockers);
            } elsif ($addsub eq "add") {
-               $action= "Blocking bugs added: " . join(", ", @okayblockers);
+               $action= "Blocking bugs of $bugnum added: " . join(", ", @okayblockers);
            } elsif ($addsub eq "sub") {
-               $action= "Blocking bugs removed: " . join(", ", @okayblockers);
+               $action= "Blocking bugs of $bugnum removed: " . join(", ", @okayblockers);
            }
            my %removedblocks;
            my %addedblocks;