Re-generate migrations with Python 3.

This commit is contained in:
Ignacio Fiorentino 2016-11-01 12:00:13 -03:00
parent 5d07111a18
commit f8e0f2dc2c

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.2 on 2016-10-31 18:16
# Generated by Django 1.9.7 on 2016-11-01 14:59
from __future__ import unicode_literals
from django.db import migrations, models
@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='client',
name='_post_logout_redirect_uris',
field=models.TextField(blank=True, default=b'', help_text='Enter each URI on a new line.', verbose_name='Post Logout Redirect URIs'),
field=models.TextField(blank=True, default='', help_text='Enter each URI on a new line.', verbose_name='Post Logout Redirect URIs'),
),
]