From 992a94247ab481da9c2f9d7762a011d45670ab07 Mon Sep 17 00:00:00 2001 From: namrata Date: Wed, 3 Aug 2022 07:32:26 +0000 Subject: [PATCH] Fix missing space before end quote Fix missing space before end quote for log error of reset task state. Partial-change: #844497 Change-Id: I856531a2d50aab6ea11ebbc13b493b5d8b30d83a --- manilaclient/osc/v2/share.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manilaclient/osc/v2/share.py b/manilaclient/osc/v2/share.py index a9448ce17..4527d91ec 100644 --- a/manilaclient/osc/v2/share.py +++ b/manilaclient/osc/v2/share.py @@ -789,7 +789,7 @@ class SetShare(command.Command): try: share_obj.reset_task_state(parsed_args.task_state) except Exception as e: - LOG.error(_("Failed to update share task state" + LOG.error(_("Failed to update share task state " "%s"), e) result += 1