diff --git a/api/controllers/console/wraps.py b/api/controllers/console/wraps.py index d9c8bb5481..f1c81b1f6c 100644 --- a/api/controllers/console/wraps.py +++ b/api/controllers/console/wraps.py @@ -56,7 +56,7 @@ def cloud_edition_billing_enabled(view): def decorated(*args, **kwargs): features = FeatureService.get_features(current_user.current_tenant_id) if not features.billing.enabled: - abort(403, "The billing feature is not enabled.") + abort(403, "Billing feature is not enabled.") return view(*args, **kwargs) return decorated