From: Dan Boger Date: Thu, 22 Oct 2009 19:35:45 +0000 (-0700) Subject: Add a requirement for Net::* 3.0+ X-Git-Url: https://git.sommitrealweird.co.uk//gitweb/?p=twirssi-net-twitter-lite.git;a=commitdiff_plain;h=142d1b23970732998b20b195a6c5bc257fc8038a Add a requirement for Net::* 3.0+ --- diff --git a/twirssi.pl b/twirssi.pl index 80ee243..5ab53c1 100644 --- a/twirssi.pl +++ b/twirssi.pl @@ -11,7 +11,7 @@ $Data::Dumper::Indent = 1; use vars qw($VERSION %IRSSI); -$VERSION = "2.3.0"; +$VERSION = "2.3.1beta"; %IRSSI = ( authors => 'Dan Boger', contact => 'zigdon@gmail.com', @@ -490,7 +490,7 @@ sub cmd_login { } $defservice = $service = ucfirst lc $service; - eval "use Net::$service"; + eval "use Net::$service 3.0"; if ($@) { ¬ice( "Failed to load Net::$service when trying to log in as $user: $@");