From 8c7ca26fbb0d51159681d7795a8a1ccb4217182d Mon Sep 17 00:00:00 2001 From: Brian Rosmaita Date: Wed, 1 Sep 2021 11:41:05 -0400 Subject: [PATCH] Remove extraneous space from error message Follow-up to fix a typo noted during review of Change I6d45aeab065197a85ce. Change-Id: I38a7b5413268478415bc9fe9a4e9df950b53b63f --- cinder/api/v3/snapshots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/api/v3/snapshots.py b/cinder/api/v3/snapshots.py index b4494112cac..159cd305d6e 100644 --- a/cinder/api/v3/snapshots.py +++ b/cinder/api/v3/snapshots.py @@ -37,7 +37,7 @@ LOG = logging.getLogger(__name__) SNAPSHOT_IN_USE_FLAG_MSG = ( f"Since microversion {mv.SNAPSHOT_IN_USE} the 'force' flag is " "invalid for this request. For backward compatability, however, when " - "the 'force' flag is passed with a value evaluating to True, it is " + "the 'force' flag is passed with a value evaluating to True, it is " "silently ignored.")