From 71c5c6083a3aa5342e37c824955e5adf12a63ded Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 16 Jul 2012 16:31:04 -0700 Subject: [PATCH] fix undefined value in print (should be $version, not $2) --- Debbugs/Packages.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2