From: timriker Date: Fri, 22 Nov 2002 06:47:39 +0000 (+0000) Subject: do_pkg not supported yet X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=386371d1a7e4ca6ddbc1f57e01ebe93f52ce41ce;p=infobot.git do_pkg not supported yet git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@682 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/src/Modules/DebianExtra.pl b/blootbot/src/Modules/DebianExtra.pl index f617934..2d0ef04 100644 --- a/blootbot/src/Modules/DebianExtra.pl +++ b/blootbot/src/Modules/DebianExtra.pl @@ -69,7 +69,7 @@ sub do_id { my($num) = @_; my $url = "http://bugs.debian.org/$num"; - if (1) { + if (1) { # FIXME &::msg($::who, "do_id not supported yet."); return; } @@ -84,7 +84,7 @@ sub do_email { my($email) = @_; my $url = "http://bugs.debian.org/$email"; - if (1) { + if (1) { # FIXME &::msg($::who, "do_email not supported yet."); return; } @@ -99,6 +99,11 @@ sub do_pkg { my($pkg) = @_; my $url = "http://bugs.debian.org/$pkg"; + if (1) { # FIXME + &::msg($::who, "do_pkg not supported yet."); + return; + } + my @results = &::getURL($url); foreach (@results) { &::DEBUG("do_pkg: $_");