From 31d7b0afecdb3c98207fff1349a88c59a3ecdf72 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 18 Aug 2020 19:32:01 -0700 Subject: [PATCH] bepasty: Make description a private variable Signed-off-by: Sunil Mohan Adapa Reviewed-by: Joseph Nuthalapati --- plinth/modules/bepasty/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plinth/modules/bepasty/__init__.py b/plinth/modules/bepasty/__init__.py index cde0933e4..100276b7a 100644 --- a/plinth/modules/bepasty/__init__.py +++ b/plinth/modules/bepasty/__init__.py @@ -21,9 +21,9 @@ managed_packages = ['bepasty', 'uwsgi', 'uwsgi-plugin-python3'] managed_services = ['uwsgi'] -description = [ _('bepasty is a web application that allows all types of files to be ' 'uploaded and shared.'), +_description = [ _('bepasty does not use usernames for login. It only uses passwords. For ' 'each password, a set of permissions can be selected. Once you have ' 'created a password, you can share it with the users who should have the' @@ -63,7 +63,7 @@ class BepastyApp(app_module.App): info = app_module.Info(self.app_id, version, name=_('bepasty'), icon_filename='bepasty', short_description=_('File Sharing'), - description=description, manual_page='bepasty', + description=_description, manual_page='bepasty', clients=clients) self.add(info)