Menu

[c54480]: / scripts / bugger  Maximize  Restore  History

Download this file

18 lines (13 with data), 441 Bytes

#!/usr/bin/ruby

require 'bicho'

server = Bicho::Client.new('https://bugzilla.suse.com')
ARGV.each do |id| 
  server.get_bugs(id).each do |bug|  
    puts "#{id}:short_desc:\"#{bug.summary}\""
    puts "#{id}:priority:\"#{bug.priority}\""
    puts "#{id}:severity:\"#{bug.severity}\""
    puts "#{id}:deltats:\"#{bug.delta_ts}\""
    puts "#{id}:bug_status:\"#{bug.status}\""
    puts "#{id}:whiteboard:\"#{bug.whiteboard}\""
  end  
end


Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.