From: Zhongyue Luo Date: Wed, 17 Jul 2013 05:19:26 +0000 (+0900) Subject: Fixes default value of use_default_quota_class X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b23cad10780dcdaaac50497726f7de07831084a2;p=openstack-build%2Fcinder-build.git Fixes default value of use_default_quota_class Changed 'True' to True Change-Id: I69d5cefd888044b5544e41b34ab4f8974efb0a14 --- 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