Skip to content

Commit

Permalink
Update lazy translation import (#102)
Browse files Browse the repository at this point in the history
`ugettext_lazy` is deprecated as of Django 3.0 (to be removed in Django 4.0)
  • Loading branch information
ThijsBoehme authored and tomasgarzon committed Dec 12, 2019
1 parent 7341848 commit 1b4353b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multiselectfield/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


from django.core import validators
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _


class MaxValueMultiFieldValidator(validators.MaxLengthValidator):
Expand Down

0 comments on commit 1b4353b

Please sign in to comment.