[Python-modules-commits] [python-social-auth] 30/131: Add AppConfig Label of "social_auth" for migrations

Wolfgang Borgert debacle at moszumanska.debian.org
Sat Dec 24 15:16:58 UTC 2016


This is an automated email from the git hooks/post-receive script.

debacle pushed a commit to tag v0.2.20
in repository python-social-auth.

commit 344f61e254a4d412d66c89f7c986a5e3fa988120
Author: ccs <codyscharfe at gmail.com>
Date:   Tue Apr 26 09:19:22 2016 -0400

    Add AppConfig Label of "social_auth" for migrations
---
 social/apps/django_app/default/config.py                                | 1 +
 social/apps/django_app/default/migrations/0002_add_related_name.py      | 2 +-
 .../apps/django_app/default/migrations/0003_alter_email_max_length.py   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/social/apps/django_app/default/config.py b/social/apps/django_app/default/config.py
index 745e24d..a2c44b7 100644
--- a/social/apps/django_app/default/config.py
+++ b/social/apps/django_app/default/config.py
@@ -3,6 +3,7 @@ from django.apps import AppConfig
 
 class PythonSocialAuthConfig(AppConfig):
     name = 'social.apps.django_app.default'
+    label = 'social_auth'
     verbose_name = 'Python Social Auth'
 
     def ready(self):
diff --git a/social/apps/django_app/default/migrations/0002_add_related_name.py b/social/apps/django_app/default/migrations/0002_add_related_name.py
index 8e39f15..00f863d 100644
--- a/social/apps/django_app/default/migrations/0002_add_related_name.py
+++ b/social/apps/django_app/default/migrations/0002_add_related_name.py
@@ -8,7 +8,7 @@ from django.conf import settings
 class Migration(migrations.Migration):
 
     dependencies = [
-        ('default', '0001_initial'),
+        ('social_auth', '0001_initial'),
     ]
 
     operations = [
diff --git a/social/apps/django_app/default/migrations/0003_alter_email_max_length.py b/social/apps/django_app/default/migrations/0003_alter_email_max_length.py
index 882c311..2f5c86e 100644
--- a/social/apps/django_app/default/migrations/0003_alter_email_max_length.py
+++ b/social/apps/django_app/default/migrations/0003_alter_email_max_length.py
@@ -11,7 +11,7 @@ EMAIL_LENGTH = getattr(settings, setting_name('EMAIL_LENGTH'), 254)
 
 class Migration(migrations.Migration):
     dependencies = [
-        ('default', '0002_add_related_name'),
+        ('social_auth', '0002_add_related_name'),
     ]
 
     operations = [

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-social-auth.git



More information about the Python-modules-commits mailing list