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
commitf091e0853c22108db384e946912267d6bcd070b1 (patch)
tree3e91f40ae2099dea87347b5fe57d39595be254c5 /bin/get-bug-status
parenta7d9a15f4a566695672b6f4ab3727fc25fdd6baa (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