Skip to content

Commit

Permalink
Merge pull request #33 from uw-it-aca/feature/pypi
Browse files Browse the repository at this point in the history
drop patterns from urls.py
  • Loading branch information
jlaney committed May 15, 2017
2 parents 079f234 + 52d6126 commit fc0bbb5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions blti/urls.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from django.conf.urls import patterns, url, include
from django.conf.urls import url
from blti.views import RawBLTIView


urlpatterns = patterns(
'',
urlpatterns = [
url(r'^$', RawBLTIView.as_view()),
)
]

0 comments on commit fc0bbb5

Please sign in to comment.