Skip to content

Commit

Permalink
bug fix: production client id and secret do not fit these requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Delawen committed Sep 27, 2020
1 parent c16c9bb commit 4f0a9ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pretix_mercadopago/payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def settings_form_fields(self):
forms.CharField(
label=_('Client ID'),
max_length=71,
min_length=41,
min_length=10,
help_text=_('{token}<a target="_blank" rel="noopener" '
'href="{docs_url}">{text}</a>').format(
token=_('puede usar un token el lugar del client_id o '),
Expand All @@ -103,7 +103,7 @@ def settings_form_fields(self):
forms.CharField(
label=_('Secret'),
max_length=71,
min_length=71,
min_length=10,
required=False
)),
('endpoint',
Expand Down

0 comments on commit 4f0a9ed

Please sign in to comment.