From 3246dc44dd6f843c5ee700ff0bda4fd9dc357fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Sat, 2 Jan 2016 13:33:25 +0100 Subject: [PATCH] [fix] Correct debug message when no arguments found in the manifest --- src/yunohost/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index f43dd60be..4fb54d9a5 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -1317,7 +1317,7 @@ def _parse_args_from_manifest(manifest, action, args={}, auth=None): try: action_args = manifest['arguments'][action] except KeyError: - logger.debug("no arguments found for '%s' in '%s'", action, path) + logger.debug("no arguments found for '%s' in manifest", action) else: for arg in action_args: arg_name = arg['name']