python 3 probably doesn't like the binary string

pull/1009/head
Matt Westcott 2015-02-19 14:59:17 +00:00
rodzic a638e90b52
commit 6780a32ca2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ class Migration(migrations.Migration):
name='EventPageChooserModel',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('page', models.ForeignKey(help_text=b'more help text', to='tests.EventPage')),
('page', models.ForeignKey(help_text='more help text', to='tests.EventPage')),
],
options={
},