[Secure-testing-commits] r6806 - bin
nion at alioth.debian.org
nion at alioth.debian.org
Fri Oct 5 11:36:49 UTC 2007
Author: nion
Date: 2007-10-05 11:36:49 +0000 (Fri, 05 Oct 2007)
New Revision: 6806
Modified:
bin/get-bug-status
Log:
recognize if the maintainer is already preparing a fixed upload (pending tag)
Modified: bin/get-bug-status
===================================================================
--- bin/get-bug-status 2007-10-05 11:25:19 UTC (rev 6805)
+++ bin/get-bug-status 2007-10-05 11:36:49 UTC (rev 6806)
@@ -23,11 +23,13 @@
tags = response[bug].tags.to_s
if fix == nil or fix == "" then
+ print "TODO: fix"
if tags =~ /patch/
- puts "TODO: fix, patch available"
- else
- puts "TODO: fix"
+ print ", patch available"
end
+ if tags =~ /pending/
+ print ", pending"
+ end
else
puts "TODO: mark as fixed in " + fix
end
More information about the Secure-testing-commits
mailing list