[TrivialFix] Remove errant comma in capabilities policies

Currently, the initialization of CAPABILITIES_POLICY is supposed
to be a string, but due to the comma at the end of the string literal
the type of CAPABILITIES_POLICY is actually a tuple, which is a bug.

Change-Id: I1d924da3504861f027273d3319e5cf6c485d1d37
This commit is contained in:
Felipe Monteiro 2017-10-26 04:06:50 +01:00
parent 1ef89a58cd
commit 9d1d8ed852
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ from oslo_policy import policy
from cinder.policies import base
CAPABILITIES_POLICY = "volume_extension:capabilities",
CAPABILITIES_POLICY = "volume_extension:capabilities"
capabilities_policies = [