Skip to content

Commit

Permalink
remove ugettext imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Rosenberg committed Oct 25, 2023
1 parent 51fc1b3 commit 1b7942a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snowpenguin/django/recaptcha2/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from django import forms
from django.conf import settings
from django.core.exceptions import ValidationError
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

import requests

Expand Down
2 changes: 1 addition & 1 deletion snowpenguin/django/recaptcha2/templatetags/recaptcha2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from django import template
from django.conf import settings
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

register = template.Library()

Expand Down

0 comments on commit 1b7942a

Please sign in to comment.