summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Control
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-02-27 09:44:08 +0100
committerGuillem Jover <guillem@debian.org>2015-04-10 04:23:56 +0200
commitd465dca48fb9c7c03aedf6fd8f266d22085d2bec (patch)
tree51002134f1b1e6206c988eb05bc7c77f791aa977 /scripts/Dpkg/Control
parent9929591b148577bec771400e003c820afcb9175d (diff)
downloaddpkg-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')
-rw-r--r--scripts/Dpkg/Control/HashCore.pm2
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>) {