aboutsummaryrefslogtreecommitdiffstats
path: root/backend/raw_write.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/raw_write.py')
-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