From f091e0853c22108db384e946912267d6bcd070b1 Mon Sep 17 00:00:00 2001 From: Nico Golde Date: Fri, 5 Oct 2007 11:36:49 +0000 Subject: recognize if the maintainer is already preparing a fixed upload (pending tag) git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@6806 e39458fd-73e7-0310-bf30-c45bca0a0e42 --- bin/get-bug-status | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'bin/get-bug-status') diff --git a/bin/get-bug-status b/bin/get-bug-status index 33afbb9d3c..b04c420af8 100755 --- a/bin/get-bug-status +++ b/bin/get-bug-status @@ -23,10 +23,12 @@ fix = response[bug].fixed_versions[0].to_s 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 -- cgit v1.2.3