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
commit73d7986e52ff4dd8c685428c2a85ac64c311763c (patch)
tree2a7470b6148163e846b024c1d3350f9af8332d48 /bin/get-bug-status
parentff6a81bbfb877174b087ad584b770d850b4c3ba7 (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