summaryrefslogtreecommitdiff
path: root/openstack_dashboard/contrib/developer/resource_browser/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/contrib/developer/resource_browser/urls.py')
-rw-r--r--openstack_dashboard/contrib/developer/resource_browser/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack_dashboard/contrib/developer/resource_browser/urls.py b/openstack_dashboard/contrib/developer/resource_browser/urls.py
index 05137b980..4c40165fa 100644
--- a/openstack_dashboard/contrib/developer/resource_browser/urls.py
+++ b/openstack_dashboard/contrib/developer/resource_browser/urls.py
@@ -12,10 +12,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 horizon.browsers.views import AngularIndexView
urlpatterns = [
- url('', AngularIndexView.as_view(), name='index'),
+ re_path('', AngularIndexView.as_view(), name='index'),
]