summaryrefslogtreecommitdiff
path: root/openstack_dashboard/test/test_panels/second_panel/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/test/test_panels/second_panel/urls.py')
-rw-r--r--openstack_dashboard/test/test_panels/second_panel/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack_dashboard/test/test_panels/second_panel/urls.py b/openstack_dashboard/test/test_panels/second_panel/urls.py
index 709b66b32..3335e3545 100644
--- a/openstack_dashboard/test/test_panels/second_panel/urls.py
+++ b/openstack_dashboard/test/test_panels/second_panel/urls.py
@@ -10,10 +10,10 @@
# License for the specific language governing permissions and limitations
# under the License.
-from django.conf.urls import url
+from django.urls import re_path
from openstack_dashboard.test.test_panels.second_panel import views
urlpatterns = [
- url(r'^$', views.IndexView.as_view(), name='index'),
+ re_path(r'^$', views.IndexView.as_view(), name='index'),
]