We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've committed a PR for this problem, but the test suite seems broken.
The text was updated successfully, but these errors were encountered:
Patterns was deprecated after 1.8 and removed in 1.10, here is my fix for URLS.py
try: from django.conf.urls import url except ImportError: from django.conf.urls.defaults import url, patterns # Support for Django < 1.4 from dj_elastictranscoder.views import endpoint urlpatterns = [ # 'dj_elastictranscoder.views', url( regex=r'^endpoint/$', view=endpoint, name='endpoint', ), # url(r'^endpoint/$', 'endpoint'), ]
MODELS.py was broken as well as the if statement import was not working. I just removed the old code and left the following.
from django.contrib.contenttypes.fields import GenericForeignKey
Sorry, something went wrong.
It's also broken due to the broken check on models.py line 4:
models.py
django.get_version() >= '1.8':
That always returns false (you, obviously, can't do a string check like that)
No branches or pull requests
I've committed a PR for this problem, but the test suite seems broken.
The text was updated successfully, but these errors were encountered: