You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
pinax/stripe/mixins.py in <module> at line 7
from .actions import customers
from .conf import settings
try:
from account.decorators import login_required # <-- this line is highlighted
except ImportError:
from django.contrib.auth.decorators import login_required
I was thinking maybe there was a conflict with allauth, but disabling it doesn't seem to fix anything. Any ideas?
The text was updated successfully, but these errors were encountered:
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?
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?
The text was updated successfully, but these errors were encountered: