From 95d0923788096447e21f1a5b551b52b390be839e Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 29 Feb 2020 19:53:25 -0500 Subject: [PATCH] help: Rename views modules as 'views' Tests performed: - Visit help main view by visiting URL /plinth/help/. - Visit pages: about, manual, get support, submit feedback, contribute. - Download manual. - Raise an exception in a view, visit the view in non-develop mode, see the status log. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Veiko Aasa --- plinth/modules/help/urls.py | 2 +- plinth/modules/help/{help.py => views.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename plinth/modules/help/{help.py => views.py} (100%) 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