]> err.no Git - dpkg/commitdiff
Dpkg::Source::Package: Fix some errors in error messages
authorFrank Lichtenheld <djpig@debian.org>
Tue, 26 Feb 2008 14:22:36 +0000 (15:22 +0100)
committerFrank Lichtenheld <djpig@debian.org>
Fri, 29 Feb 2008 17:38:52 +0000 (18:38 +0100)
scripts/Dpkg/Source/Package.pm

index d13cae85cfc57fbed4360bbaa5d6479a54c6b498..7219e75750ac2de06130681fb6264211eddb89a0 100644 (file)
@@ -102,7 +102,7 @@ sub upgrade_object_type {
         $module .= "::$variant" if defined $variant;
         eval "require $module";
         if ($@) {
-            error(_g("source package format `%s' is not supported (perl module %s is required)"), $format, $module);
+           error(_g("source package format `%s' is not supported (Perl module %s is required)"), $format, $module);
         }
         bless $self, $module;
     } else {
@@ -226,7 +226,7 @@ sub extract {
 }
 
 sub do_extract {
-    error("Dpkg::Source::Package doesn't know how to unpack a source package. Use one of the subclass.");
+    error("Dpkg::Source::Package doesn't know how to unpack a source package. Use one of the subclasses.");
 }
 
 # Function used specifically during creation of a source package
@@ -241,7 +241,7 @@ sub build {
 }
 
 sub do_build {
-    error("Dpkg::Source::Package doesn't know how to build a source package. Use one of the subclass.");
+    error("Dpkg::Source::Package doesn't know how to build a source package. Use one of the subclasses.");
 }
 
 sub can_build {