From b23cad10780dcdaaac50497726f7de07831084a2 Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Wed, 17 Jul 2013 14:19:26 +0900 Subject: [PATCH] Fixes default value of use_default_quota_class Changed 'True' to True Change-Id: I69d5cefd888044b5544e41b34ab4f8974efb0a14 --- cinder/quota.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/quota.py b/cinder/quota.py index f5bcccb7c..72e3ad27d 100644 --- a/cinder/quota.py +++ b/cinder/quota.py @@ -57,7 +57,7 @@ quota_opts = [ default='cinder.quota.DbQuotaDriver', help='default driver to use for quota checks'), cfg.BoolOpt('use_default_quota_class', - default='True', + default=True, help='whether to use default quota class for default quota'), ] CONF = cfg.CONF -- 2.45.2