diff options
author | Papoteur <papoteur@mageia.org> | 2021-03-11 23:06:47 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2021-03-11 23:06:47 +0100 |
commit | dbef8362e5fe46f8116bf70eaa646081e6fba206 (patch) | |
tree | 9656591b32bccb6ff4389c33e6f6b93f35867520 /backend | |
parent | a4827184d778d47ee51564ea51a7e221b6708bea (diff) | |
download | isodumper-dbef8362e5fe46f8116bf70eaa646081e6fba206.tar isodumper-dbef8362e5fe46f8116bf70eaa646081e6fba206.tar.gz isodumper-dbef8362e5fe46f8116bf70eaa646081e6fba206.tar.bz2 isodumper-dbef8362e5fe46f8116bf70eaa646081e6fba206.tar.xz isodumper-dbef8362e5fe46f8116bf70eaa646081e6fba206.zip |
Error message more accurate (mga#28466) after checking the signature
Diffstat (limited to 'backend')
-rwxr-xr-x | backend/raw_write.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/raw_write.py b/backend/raw_write.py index 2fa6fff..ac454f1 100755 --- a/backend/raw_write.py +++ b/backend/raw_write.py @@ -221,7 +221,7 @@ class Dumper(object): self.return_message +="\n" + _("The {} sum check is OK and the sum is signed").format(self.sum_type) else : if self.signature_found: - self.return_message +="\n" + _("The signature of the sum is false !").format(self.sum_type) + self.return_message +="\n" + _("The validation of the GPG signature failed !") + "\n" + _("The integrity of the ISO image could not be verified.") self.return_state = False else: #, keep the bracket, this is the place for sum type |