Merge pull request #4991 from fakepoet/patch-1

Fix Django url syntax.
This commit is contained in:
Tom Christie 2017-03-16 12:26:46 +00:00 committed by GitHub
commit fb8cbab4cf

View File

@ -41,7 +41,7 @@ view in our URL configuration.
schema_view = get_schema_view(title='Pastebin API')
urlpatterns = [
url('^schema/$', schema_view),
       url(r'^schema/$', schema_view),
...
]