From f61ba6bbaa932a5f7f45dea5c66d3746ca047e36 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Wed, 21 Dec 2011 19:24:52 +0100 Subject: [PATCH] Porting/cherrymaint now requires LWP::UserAgent instead of using it. This way ./perl -Ilib -c Porting/cherrymaint can be used to syntax check it. cherrymaint was not importing symbols from LWP::UserAgent, so there are no changes in runtime behaviour. --- Porting/cherrymaint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Porting/cherrymaint b/Porting/cherrymaint index ab27d35..c5b2804 100644 --- a/Porting/cherrymaint +++ b/Porting/cherrymaint @@ -4,7 +4,7 @@ use strict; use warnings; use File::Basename; use Getopt::Long; -use LWP::UserAgent; +require LWP::UserAgent; my %votemap = ( 'unexamined' => 0, -- 2.7.4