diff options
-rw-r--r-- | meta/lib/oe/gpg_sign.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py index a8a478aa95..38eb0cb137 100644 --- a/meta/lib/oe/gpg_sign.py +++ b/meta/lib/oe/gpg_sign.py | |||
@@ -24,7 +24,7 @@ class LocalSigner(object): | |||
24 | status, output = oe.utils.getstatusoutput(cmd) | 24 | status, output = oe.utils.getstatusoutput(cmd) |
25 | if status: | 25 | if status: |
26 | raise bb.build.FuncFailed('Failed to export gpg public key (%s): %s' % | 26 | raise bb.build.FuncFailed('Failed to export gpg public key (%s): %s' % |
27 | (keyid, output.decode("utf-8"))) | 27 | (keyid, output)) |
28 | 28 | ||
29 | def sign_rpms(self, files, keyid, passphrase): | 29 | def sign_rpms(self, files, keyid, passphrase): |
30 | """Sign RPM files""" | 30 | """Sign RPM files""" |
@@ -39,7 +39,7 @@ class LocalSigner(object): | |||
39 | 39 | ||
40 | status, output = oe.utils.getstatusoutput(cmd) | 40 | status, output = oe.utils.getstatusoutput(cmd) |
41 | if status: | 41 | if status: |
42 | raise bb.build.FuncFailed("Failed to sign RPM packages: %s" % output.decode("utf-8")) | 42 | raise bb.build.FuncFailed("Failed to sign RPM packages: %s" % output) |
43 | 43 | ||
44 | def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True): | 44 | def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True): |
45 | """Create a detached signature of a file""" | 45 | """Create a detached signature of a file""" |
@@ -113,4 +113,3 @@ def get_signer(d, backend): | |||
113 | return LocalSigner(d) | 113 | return LocalSigner(d) |
114 | else: | 114 | else: |
115 | bb.fatal("Unsupported signing backend '%s'" % backend) | 115 | bb.fatal("Unsupported signing backend '%s'" % backend) |
116 | |||