diff --git a/common/djangoapps/third_party_auth/migrations/0002_schema__provider_icon_image.py b/common/djangoapps/third_party_auth/migrations/0002_schema__provider_icon_image.py index 073cddf69c..32d54802f6 100644 --- a/common/djangoapps/third_party_auth/migrations/0002_schema__provider_icon_image.py +++ b/common/djangoapps/third_party_auth/migrations/0002_schema__provider_icon_image.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0003_samlproviderconfig_debug_mode.py b/common/djangoapps/third_party_auth/migrations/0003_samlproviderconfig_debug_mode.py index 9c36731700..1716aa5285 100644 --- a/common/djangoapps/third_party_auth/migrations/0003_samlproviderconfig_debug_mode.py +++ b/common/djangoapps/third_party_auth/migrations/0003_samlproviderconfig_debug_mode.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0004_add_visible_field.py b/common/djangoapps/third_party_auth/migrations/0004_add_visible_field.py index 736e01ceec..5fff768bae 100644 --- a/common/djangoapps/third_party_auth/migrations/0004_add_visible_field.py +++ b/common/djangoapps/third_party_auth/migrations/0004_add_visible_field.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0011_auto_20170616_0112.py b/common/djangoapps/third_party_auth/migrations/0011_auto_20170616_0112.py index 954205d321..5e948c324d 100644 --- a/common/djangoapps/third_party_auth/migrations/0011_auto_20170616_0112.py +++ b/common/djangoapps/third_party_auth/migrations/0011_auto_20170616_0112.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0015_samlproviderconfig_archived.py b/common/djangoapps/third_party_auth/migrations/0015_samlproviderconfig_archived.py index fe0b4ebfb5..70f10344cf 100644 --- a/common/djangoapps/third_party_auth/migrations/0015_samlproviderconfig_archived.py +++ b/common/djangoapps/third_party_auth/migrations/0015_samlproviderconfig_archived.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0016_auto_20180130_0938.py b/common/djangoapps/third_party_auth/migrations/0016_auto_20180130_0938.py index 631788a82c..01a7e0bbde 100644 --- a/common/djangoapps/third_party_auth/migrations/0016_auto_20180130_0938.py +++ b/common/djangoapps/third_party_auth/migrations/0016_auto_20180130_0938.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations, models class Migration(migrations.Migration): diff --git a/common/djangoapps/third_party_auth/migrations/0018_auto_20180327_1631.py b/common/djangoapps/third_party_auth/migrations/0018_auto_20180327_1631.py index c5f00b8d4d..0406ea6a4a 100644 --- a/common/djangoapps/third_party_auth/migrations/0018_auto_20180327_1631.py +++ b/common/djangoapps/third_party_auth/migrations/0018_auto_20180327_1631.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0020_cleanup_slug_fields.py b/common/djangoapps/third_party_auth/migrations/0020_cleanup_slug_fields.py index 05b4692d65..132f173b69 100644 --- a/common/djangoapps/third_party_auth/migrations/0020_cleanup_slug_fields.py +++ b/common/djangoapps/third_party_auth/migrations/0020_cleanup_slug_fields.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # Generated by Django 1.11.12 on 2018-04-10 13:57 -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations diff --git a/common/djangoapps/third_party_auth/migrations/0022_auto_20181012_0307.py b/common/djangoapps/third_party_auth/migrations/0022_auto_20181012_0307.py index ae5b10c946..e95f34e483 100644 --- a/common/djangoapps/third_party_auth/migrations/0022_auto_20181012_0307.py +++ b/common/djangoapps/third_party_auth/migrations/0022_auto_20181012_0307.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # Generated by Django 1.11.15 on 2018-10-12 07:07 -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals from django.db import migrations, models diff --git a/common/djangoapps/third_party_auth/migrations/0024_fix_edit_disallowed.py b/common/djangoapps/third_party_auth/migrations/0024_fix_edit_disallowed.py index 1b06689573..a25ab8047a 100644 --- a/common/djangoapps/third_party_auth/migrations/0024_fix_edit_disallowed.py +++ b/common/djangoapps/third_party_auth/migrations/0024_fix_edit_disallowed.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- # Generated by Django 1.11.20 on 2019-05-20 20:13 -from __future__ import unicode_literals +from __future__ import absolute_import, unicode_literals -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations, models class Migration(migrations.Migration):