We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c4a166 commit 62fd557Copy full SHA for 62fd557
README.md
@@ -78,12 +78,12 @@ Settings
78
In this case, you will also need to updates your `urls.py` to include the view
79
that serves the files:
80
81
- urlpatterns = patterns('',
+ urlpatterns = [
82
# ... the rest of your URLconf goes here ...
83
84
# Serve Database Files directly
85
- url(r'', include('binary_database_files.urls')),
86
- )
+ path(r"", include("binary_database_files.urls")),
+ ]
87
88
* `DATABASE_FILES_BASE_URL`
89
0 commit comments