diff options
author | Guillem Jover <guillem@debian.org> | 2015-02-27 09:44:08 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2015-04-10 04:23:56 +0200 |
commit | d465dca48fb9c7c03aedf6fd8f266d22085d2bec (patch) | |
tree | 51002134f1b1e6206c988eb05bc7c77f791aa977 /scripts/Dpkg/Control/HashCore.pm | |
parent | 9929591b148577bec771400e003c820afcb9175d (diff) | |
download | dpkg-d465dca48fb9c7c03aedf6fd8f266d22085d2bec.tar.gz |
Consistently use proper quotation marks all over the place
That is "" or '', and not the unbalanced `' pair.
Diffstat (limited to 'scripts/Dpkg/Control/HashCore.pm')
-rw-r--r-- | scripts/Dpkg/Control/HashCore.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Control/HashCore.pm b/scripts/Dpkg/Control/HashCore.pm index d55842483..4579a4980 100644 --- a/scripts/Dpkg/Control/HashCore.pm +++ b/scripts/Dpkg/Control/HashCore.pm @@ -243,7 +243,7 @@ sub parse { s/\s*\n$//; unless (m/^-----BEGIN PGP SIGNATURE-----$/) { $self->parse_error($desc, g_('expected OpenPGP signature, ' . - "found something else \`%s'"), $_); + "found something else '%s'"), $_); } # Skip OpenPGP signature while (<$fh>) { |