aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2018-03-18 12:34:41 +0100
committerPapoteur <papoteur@mageia.org>2018-03-18 12:35:46 +0100
commitff7455ea064411171f4d781e73c6e05d02354667 (patch)
tree181e997890447342e569ba898629e54dc1d3e0d0 /backend
parentf48269b972c13f83e793c64117798e3f013a6908 (diff)
downloadisodumper-ff7455ea064411171f4d781e73c6e05d02354667.tar
isodumper-ff7455ea064411171f4d781e73c6e05d02354667.tar.gz
isodumper-ff7455ea064411171f4d781e73c6e05d02354667.tar.bz2
isodumper-ff7455ea064411171f4d781e73c6e05d02354667.tar.xz
isodumper-ff7455ea064411171f4d781e73c6e05d02354667.zip
Typos in strings of raw_write.py
Update pot file
Diffstat (limited to 'backend')
-rwxr-xr-xbackend/raw_write.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/raw_write.py b/backend/raw_write.py
index 54b46d8..309cf17 100755
--- a/backend/raw_write.py
+++ b/backend/raw_write.py
@@ -143,7 +143,7 @@ class Dumper(object):
elif retcode == 0:
message += _('{} successfully unmounted').format(mount[0])
else:
- message += _('Error, umount {} returned ').format(str(retcode))
+ message += _('Error, umount returned {}').format(str(retcode))
except OSError as e:
message += _('Execution failed: {}').format(str(e))
print(message)
@@ -171,7 +171,7 @@ class Dumper(object):
# Read the sum in the file
sumcheck=(fs.readline()).split()[0]
else:
- self.return_message = _('Invalid signature for %s.sha512)'%source)
+ self.return_message = _('Invalid signature for %s.sha512')%source
self.return_state = True
self.finished.set()
return