Add docstring to app_debug

This commit is contained in:
Laurent Peuch 2015-10-03 15:57:36 -04:00
parent e7fd25c82e
commit c2cd0bdc1f

View file

@ -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())