From c2cd0bdc1f6a0854a9f05c8969532ca70632eb15 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 3 Oct 2015 15:57:36 -0400 Subject: [PATCH] Add docstring to app_debug --- lib/yunohost/app.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/yunohost/app.py b/lib/yunohost/app.py index 6a38d8420..eabddba0b 100644 --- a/lib/yunohost/app.py +++ b/lib/yunohost/app.py @@ -725,6 +725,12 @@ def app_clearaccess(auth, apps): def app_debug(app): + """ + Display debug informations for an app + + Keyword argument: + app + """ with open(apps_setting_path + app + '/manifest.json') as f: manifest = json.loads(f.read())