-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix example urls to work with recent Django
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from django.conf import settings | ||
from django.conf.urls import include, patterns, static, url | ||
from django.conf.urls import static | ||
from django.contrib import admin | ||
from django.urls import path | ||
|
||
admin.autodiscover() | ||
|
||
urlpatterns = patterns( | ||
"", | ||
url(r"^admin/", include(admin.site.urls)), | ||
) | ||
urlpatterns = [ | ||
path('admin/', admin.site.urls), | ||
] | ||
urlpatterns += static.static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |