From 0ad8436bae65a454616990f8e54c64fc2dd76690 Mon Sep 17 00:00:00 2001 From: qiaomin Date: Wed, 11 Jan 2017 14:41:45 +0800 Subject: [PATCH] Remove the redundant "required=True" The django form field default is "required=True", so this patch remove the redundant "required=True" in the form. Change-Id: If0a5e6086a5898670643cc8f2cc0f97822ad063b --- trove_dashboard/content/database_clusters/forms.py | 1 - 1 file changed, 1 deletion(-) diff --git a/trove_dashboard/content/database_clusters/forms.py b/trove_dashboard/content/database_clusters/forms.py index d963c26..c2742d7 100644 --- a/trove_dashboard/content/database_clusters/forms.py +++ b/trove_dashboard/content/database_clusters/forms.py @@ -444,7 +444,6 @@ class ResetPasswordForm(forms.SelfHandlingForm): cluster_id = forms.CharField(widget=forms.HiddenInput()) password = forms.CharField(widget=forms.PasswordInput(), label=_("New Password"), - required=True, help_text=_("New password for cluster access.")) @sensitive_variables('data')