From 3214b296bc3eb7ae040a366fe7943ef37063e76d Mon Sep 17 00:00:00 2001 From: Nicolas ROCHE Date: Mon, 9 Mar 2020 17:47:33 +0100 Subject: [PATCH] python3: adapt relative import (#40570) --- bijoe/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bijoe/urls.py b/bijoe/urls.py index 1353dd8..2db081f 100644 --- a/bijoe/urls.py +++ b/bijoe/urls.py @@ -18,7 +18,7 @@ from django.conf.urls import include, url from django.contrib import admin from django.conf import settings -import views +from . import views urlpatterns = [ url(r'^$', views.homepage, name='homepage'),