summaryrefslogtreecommitdiff
path: root/inventory/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'inventory/forms.py')
-rw-r--r--inventory/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/inventory/forms.py b/inventory/forms.py
index 36653b1..e450a53 100644
--- a/inventory/forms.py
+++ b/inventory/forms.py
@@ -39,7 +39,7 @@ class SignUpForm(UserCreationForm):
last_name = forms.CharField(max_length=30, required=False)
email = forms.EmailField(max_length=254)
website = forms.URLField(label='Enter website URL', max_length=250, required=False)
- address = forms.CharField(label='Payment Address type ', widget=forms.Select(choices=ADDRESS_CHOICES))
+ address = forms.CharField(label='Payment Address type', widget=forms.Select(choices=ADDRESS_CHOICES))
pay_url = forms.URLField(label='Directly enter the Plain PaytoURI', max_length=250, required=False)
class Meta: