diff --git a/plinth/modules/help/urls.py b/plinth/modules/help/urls.py index 57d3febcd..1a7d41a17 100644 --- a/plinth/modules/help/urls.py +++ b/plinth/modules/help/urls.py @@ -7,7 +7,7 @@ from django.conf.urls import url from plinth.utils import non_admin_view -from . import help as views +from . import views urlpatterns = [ url(r'^help/$', non_admin_view(views.index), name='index'), diff --git a/plinth/modules/help/help.py b/plinth/modules/help/views.py similarity index 100% rename from plinth/modules/help/help.py rename to plinth/modules/help/views.py