From 8b96ea0698e098a8944eae1927a320a61466f754 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 2 Aug 2019 14:26:32 -0700 Subject: [PATCH] storage: Fix incorrect i18n when throwing and error Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- actions/storage | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/actions/storage b/actions/storage index 572771e68..292cc7cfe 100755 --- a/actions/storage +++ b/actions/storage @@ -258,8 +258,7 @@ def eject_drive_of_device(device_path): if not found_objects: raise ValueError( - _('No such device - {device_path}').format( - device_path=device_path)) + 'No such device - {device_path}'.format(device_path=device_path)) obj = found_objects[0]