summaryrefslogtreecommitdiffstats
path: root/bin/get-bug-status
diff options
context:
space:
mode:
authorNico Golde <nion@debian.org>2007-10-05 11:36:49 +0000
committerNico Golde <nion@debian.org>2007-10-05 11:36:49 +0000
commitf7f8d64f201ed331288cb76580c60939100d4ac7 (patch)
tree578dca5cc6dfc055589dedf77086058571e538ee /bin/get-bug-status
parented8c1e2219c3e843d84392ae8a8f215ca7212663 (diff)
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
Diffstat (limited to 'bin/get-bug-status')
-rwxr-xr-xbin/get-bug-status8
1 files changed, 5 insertions, 3 deletions
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

© 2014-2024 Faster IT GmbH | imprint | privacy policy