diff options
| author | Tim Graham <timograham@gmail.com> | 2017-01-20 08:01:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-20 08:01:02 -0500 |
| commit | 4e729feaa647547f25debb1cb63dec989dc41a20 (patch) | |
| tree | 7c7a38c5961bf4daf98a8cb47dc74c769563ffcf /tests/admin_scripts/urls.py | |
| parent | ec4c1d6717da7a9d09d5b3ce84cccac819bb592c (diff) | |
Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.
These functions do nothing on Python 3.
Diffstat (limited to 'tests/admin_scripts/urls.py')
| -rw-r--r-- | tests/admin_scripts/urls.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/admin_scripts/urls.py b/tests/admin_scripts/urls.py index d258641fbe..edb5e1f3b0 100644 --- a/tests/admin_scripts/urls.py +++ b/tests/admin_scripts/urls.py @@ -1,10 +1,9 @@ import os from django.conf.urls import url -from django.utils._os import upath from django.views.static import serve -here = os.path.dirname(upath(__file__)) +here = os.path.dirname(__file__) urlpatterns = [ url(r'^custom_templates/(?P<path>.*)$', serve, { |
