Open vincefav opened 6 years ago
I think you might need to add "account",
to your installed apps.
Good call, but now it's definitely clashing with allauth: django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: account
. Is there a way to rename one of them? Or would that be more trouble than it's worth?
I'm not sure tbh. Perhaps could be done with apps.py? Apparently two apps can be relabeled when there is a conflict. https://docs.djangoproject.com/en/2.0/ref/applications/#django.apps.AppConfig.label
Issue Summary
I just installed the latest version of pinax-stripe and my deployment fails with a runtime error.
Steps to Reproduce
I'm using Django 2.0.4 and my installed_apps are:
It appears that the error pops up once I add
url(r"^payments/", include("pinax.stripe.urls")),
to my urls.What were you expecting to happen? / What actually happened?
I get this error:
Model class account.models.Account doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
With this traceback:
I was thinking maybe there was a conflict with allauth, but disabling it doesn't seem to fix anything. Any ideas?