From: Don Armstrong Date: Mon, 16 Jul 2012 23:31:04 +0000 (-0700) Subject: fix undefined value in print (should be $version, not $2) X-Git-Tag: release/2.6.0~360 X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=71c5c6083a3aa5342e37c824955e5adf12a63ded fix undefined value in print (should be $version, not $2) --- diff --git a/Debbugs/Packages.pm b/Debbugs/Packages.pm index 5c4d223..62d2682 100644 --- a/Debbugs/Packages.pm +++ b/Debbugs/Packages.pm @@ -610,7 +610,7 @@ sub make_source_versions { my @bin_versions = sourcetobinary($1,$version); if (not @bin_versions or @{$bin_versions[0]} != 3) { - print {$warnings} "The source $1 and version $2 do not appear to match any binary packages\n"; + print {$warnings} "The source '$1' and version '$version' do not appear to match any binary packages\n"; } next; }