Merge pull request #5040 from minusf/master

fix whitespace in code example
This commit is contained in:
Tom Christie 2017-03-30 12:31:48 +01:00 committed by GitHub
commit 5e6b233977

View File

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