﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34653	Django (4.2.2) doesn't handle unicode characters in labels of choices	Stefanos	nobody	"[In case it doesn't render correctly, the apostrophe in choices is unicode character U+2019]
Consider the following model:

{{{
class Marks(models.Model):
    CHOICES = [(""apostrophe"", ""’"")]

    marks = models.CharField(max_length=10, choices=CHOICES)
}}}

every time that {{{django-admin makemigrations}}} is called a new migration is created, because the autodetector detects that the field has changed (old_field.choices, new_field.choices):

{{{
([('apostrophe', '`')], [('apostrophe', '’')])
}}}"	Bug	closed	Migrations	4.2	Normal	invalid			Unreviewed	0	0	0	0	0	0
