mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-13 17:52:19 +03:00
fix python 2 test regression
This commit is contained in:
parent
3d99b9c05f
commit
5bbbe4c03f
|
@ -3,7 +3,7 @@ from __future__ import absolute_import
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
CHOICES = ((1, "1: this漢"), (2, _("2: that漢")))
|
CHOICES = ((1, u"1: this漢"), (2, _(u"2: that漢")))
|
||||||
|
|
||||||
|
|
||||||
class Pet(models.Model):
|
class Pet(models.Model):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user