[fix] Correct debug message when no arguments found in the manifest

This commit is contained in:
Jérôme Lebleu 2016-01-02 13:33:25 +01:00
parent 9285976acc
commit 3246dc44dd

View file

@ -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']