Skip to content

Commit

Permalink
Merge pull request #68 from liquidxinc/feature/fix_deprecated_ugettext
Browse files Browse the repository at this point in the history
Replace deprecated ugettext with gettext_lazy
  • Loading branch information
abhishek-ram committed Jan 6, 2022
2 parents b7a7bdb + ffc6cb4 commit a83590e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyas2/forms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from django import forms
from django.utils.translation import ugettext as _
from django.utils.translation import gettext_lazy as _
from pyas2lib import Organization as As2Organization
from pyas2lib import Partner as As2Partner
from pyas2lib.exceptions import AS2Exception
Expand Down

0 comments on commit a83590e

Please sign in to comment.