diff options
author | Guillem Jover <guillem@debian.org> | 2015-05-10 05:08:52 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2015-05-18 01:22:20 +0200 |
commit | e2047c6fae9dec683013e814ece7b13a96cdce37 (patch) | |
tree | fe5282e4eb14ac2499497f894b18bc74866d1a36 | |
parent | 369b8aa9127069f2569eb8ac27b50b42c3a141ac (diff) | |
download | dpkg-e2047c6fae9dec683013e814ece7b13a96cdce37.tar.gz |
Dpkg::Control::HashCore: Use proper quotes
Reverts partial regression introduced with cherry pick in commit
aea291e3db1ac0414dcf005a0a607e78bdd77a5e.
-rw-r--r-- | scripts/Dpkg/Control/HashCore.pm | 2 | ||||
-rw-r--r-- | scripts/po/de.po | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Dpkg/Control/HashCore.pm b/scripts/Dpkg/Control/HashCore.pm index 4162ad95f..9e9da2024 100644 --- a/scripts/Dpkg/Control/HashCore.pm +++ b/scripts/Dpkg/Control/HashCore.pm @@ -247,7 +247,7 @@ sub parse { chomp; unless (m/^-----BEGIN PGP SIGNATURE-----[\r\t ]*$/) { $self->parse_error($desc, g_('expected OpenPGP signature, ' . - "found something else \`%s'"), $_); + "found something else '%s'"), $_); } # Skip OpenPGP signature while (<$fh>) { diff --git a/scripts/po/de.po b/scripts/po/de.po index 9b551b331..2ff1ae632 100644 --- a/scripts/po/de.po +++ b/scripts/po/de.po @@ -2466,7 +2466,7 @@ msgstr "OpenPGP-Signatur erwartet, Dateiende nach einer Leerzeile gefunden" #: scripts/Dpkg/Control/HashCore.pm #, perl-format -msgid "expected OpenPGP signature, found something else `%s'" +msgid "expected OpenPGP signature, found something else '%s'" msgstr "OpenPGP-Signatur erwartet, etwas anderes gefunden »%s«" #: scripts/Dpkg/Control/HashCore.pm |