Package: bugs.debian.org
When I run the following script :
| #!/usr/bin/perl -w
|
| use SOAP::Lite;
|
| my $soap =
SOAP::Lite->uri('Debbugs/SOAP')->proxy('http://bugs.debian.org/cgi-bin/soap.cgi');
| my $buginfo = $soap->get_status(463439,406687)->result;
|
| foreach my $bug ( keys %$buginfo )
| {
| print "source = ".$buginfo->{$bug}->{'source'}."\n";
| }
Then I get this output :
| source = 1.2.0-3, gtkglext
| source = 1.1+dfsg-1, abe
Where I would expect this output :
| source = gtkglext
| source = abe
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]