Update ugettext_lazy to gettext_lazy

This commit is contained in:
Andrew Chen Wang 2020-06-29 15:27:53 -04:00 committed by GitHub
parent c4d0f86216
commit a9688adc0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
from django.contrib.auth import forms, get_user_model
from django.core.exceptions import ValidationError
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
User = get_user_model()