Skip to content

Commit 0490452

Browse files
committed
forms.HeavySelect2Mixin: Fix a typo
1 parent ab8a438 commit 0490452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_select2/forms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def __init__(self, attrs=None, choices=(), **kwargs):
258258
if dependent_fields is not None:
259259
self.dependent_fields = dict(dependent_fields)
260260
if not (self.data_view or self.data_url):
261-
raise ValueError('You must ether specify "data_view" or "data_url".')
261+
raise ValueError('You must either specify "data_view" or "data_url".')
262262
self.userGetValTextFuncName = kwargs.pop("userGetValTextFuncName", "null")
263263

264264
def get_url(self):

0 commit comments

Comments
 (0)