mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Add docstring to app_debug
This commit is contained in:
parent
e7fd25c82e
commit
c2cd0bdc1f
1 changed files with 6 additions and 0 deletions
|
@ -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())
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue