mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Correct debug message when no arguments found in the manifest
This commit is contained in:
parent
9285976acc
commit
3246dc44dd
1 changed files with 1 additions and 1 deletions
|
@ -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']
|
||||
|
|
Loading…
Add table
Reference in a new issue