Skip to content

Commit

Permalink
Merge pull request #71 from nitr0man/develop
Browse files Browse the repository at this point in the history
fix Django 1.6 compatibility
  • Loading branch information
RyanBalfanz committed Jan 12, 2015
2 parents 7a44e0d + e947edf commit e320708
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sendgrid/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from __future__ import absolute_import

from django.conf.urls.defaults import patterns, include, url
try:
from django.conf.urls import patterns, include, url
except:
from django.conf.urls.defaults import patterns, include, url

from .views import listener

Expand Down

0 comments on commit e320708

Please sign in to comment.