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 <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
This commit is contained in:
Sunil Mohan Adapa 2020-02-29 19:53:25 -05:00 committed by Veiko Aasa
parent ea1e7e953f
commit 95d0923788
No known key found for this signature in database
GPG Key ID: 478539CAE680674E
2 changed files with 1 additions and 1 deletions

View File

@ -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'),