Skip to content

Commit

Permalink
Merge pull request #821 from frague59/bugfix/ugettext_deprecation
Browse files Browse the repository at this point in the history
Replaces ugettext_lazy by gettext_lazy
  • Loading branch information
etianen committed Feb 11, 2020
2 parents 5581a36 + 8b44e28 commit a8026f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reversion/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from django.utils.encoding import force_str
from django.utils.functional import cached_property
from django.utils.translation import ugettext
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

from reversion.errors import RevertError
from reversion.revisions import (_follow_relations_recursive,
Expand Down

0 comments on commit a8026f5

Please sign in to comment.