Преглед на файлове

Dpkg::Source::Patch: Add missing preposition in error message

Guillem Jover преди 11 години
родител
ревизия
5ff29d575f
променени са 2 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 1 0
      debian/changelog
  2. 2 1
      scripts/Dpkg/Source/Patch.pm

+ 1 - 0
debian/changelog

@@ -90,6 +90,7 @@ dpkg (1.18.0) UNRELEASED; urgency=low
     - Say directory instead of dir in output messages.
     - Say directory instead of dir in output messages.
     - Merge the same dpkg-scanpackages warning messages into a single line.
     - Merge the same dpkg-scanpackages warning messages into a single line.
     - Clarify dpkg-genchanges changes description open error.
     - Clarify dpkg-genchanges changes description open error.
+    - Add missing preposition in Dpkg::Source::Patch error message.
 
 
   [ Raphaël Hertzog ]
   [ Raphaël Hertzog ]
   * Drop myself from Uploaders.
   * Drop myself from Uploaders.

+ 2 - 1
scripts/Dpkg/Source/Patch.pm

@@ -426,7 +426,8 @@ sub analyze {
 	    $fn{old} = $line;
 	    $fn{old} = $line;
 	}
 	}
 	if ($line =~ /\.dpkg-orig$/) {
 	if ($line =~ /\.dpkg-orig$/) {
-	    error(g_("diff `%s' patches file with name ending .dpkg-orig"), $diff);
+	    error(g_("diff '%s' patches file with name ending in .dpkg-orig"),
+	          $diff);
 	}
 	}
 
 
 	$line = _getline($self);
 	$line = _getline($self);