summaryrefslogtreecommitdiff
path: root/openstack_dashboard/contrib/developer/form_builder/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/contrib/developer/form_builder/urls.py')
-rw-r--r--openstack_dashboard/contrib/developer/form_builder/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack_dashboard/contrib/developer/form_builder/urls.py b/openstack_dashboard/contrib/developer/form_builder/urls.py
index d74763b1b..10ff9fcf1 100644
--- a/openstack_dashboard/contrib/developer/form_builder/urls.py
+++ b/openstack_dashboard/contrib/developer/form_builder/urls.py
@@ -12,10 +12,10 @@
# See the 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.contrib.developer.form_builder import views
urlpatterns = [
- url('', views.IndexView.as_view(), name='index'),
+ re_path('', views.IndexView.as_view(), name='index'),
]