Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit b1ee6eb

Browse files
committed
Merge branch 'jjmontalbo-master'
2 parents 6d4376a + db531c7 commit b1ee6eb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

dj_elastictranscoder/urls.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
from django.conf.urls import url, patterns
1+
try:
2+
from django.conf.urls import url, patterns
3+
except ImportError:
4+
from django.conf.urls.defaults import url, patterns # Support for Django < 1.4
25

36
urlpatterns = patterns('dj_elastictranscoder.views',
47
url(r'^endpoint/$', 'endpoint'),

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
include_package_data=True,
1616
zip_safe=False,
1717
install_requires=[
18-
"django >= 1.4, < 1.9",
18+
"django >= 1.3, < 1.9",
1919
"boto3 >= 1.1",
2020
"South >= 0.8",
2121
],

0 commit comments

Comments
 (0)