diff --git a/chatterbot/ext/django_chatterbot/migrations/0001_initial.py b/chatterbot/ext/django_chatterbot/migrations/0001_initial.py index d1fd3d836..9c2090775 100644 --- a/chatterbot/ext/django_chatterbot/migrations/0001_initial.py +++ b/chatterbot/ext/django_chatterbot/migrations/0001_initial.py @@ -9,8 +9,7 @@ class Migration(migrations.Migration): initial = True - dependencies = [ - ] + dependencies = [] operations = [ migrations.CreateModel( diff --git a/chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py b/chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py index b12897cef..7b38f0077 100644 --- a/chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py +++ b/chatterbot/ext/django_chatterbot/migrations/0005_statement_created_at.py @@ -18,7 +18,7 @@ class Migration(migrations.Migration): name='created_at', field=models.DateTimeField( default=django.utils.timezone.now, - help_text=b'The date and time that this statement was created at.' + help_text='The date and time that this statement was created at.' ), ), ] diff --git a/chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py b/chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py index f468701ea..1cf95d910 100644 --- a/chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py +++ b/chatterbot/ext/django_chatterbot/migrations/0006_create_conversation.py @@ -28,6 +28,6 @@ class Migration(migrations.Migration): migrations.AddField( model_name='conversation', name='statements', - field=models.ManyToManyField(help_text=b'The statements in this conversation.', related_name='conversation', to='django_chatterbot.Statement'), + field=models.ManyToManyField(help_text='The statements in this conversation.', related_name='conversation', to='django_chatterbot.Statement'), ), ]