mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Path not displayed in log_corrupted_md_file
This commit is contained in:
parent
46310dbb6c
commit
99d6daf3ab
1 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ def log_list(category=[], limit=None, with_details=False):
|
||||||
try:
|
try:
|
||||||
metadata = yaml.safe_load(md_file)
|
metadata = yaml.safe_load(md_file)
|
||||||
except yaml.YAMLError:
|
except yaml.YAMLError:
|
||||||
logger.warning(m18n.n('log_corrupted_md_file', file=md_path))
|
logger.warning(m18n.n('log_corrupted_md_file', md_file=md_path))
|
||||||
|
|
||||||
entry["success"] = metadata.get("success", "?") if metadata else "?"
|
entry["success"] = metadata.get("success", "?") if metadata else "?"
|
||||||
|
|
||||||
|
@ -192,7 +192,7 @@ def log_display(path, number=50, share=False):
|
||||||
if 'log_path' in metadata:
|
if 'log_path' in metadata:
|
||||||
log_path = metadata['log_path']
|
log_path = metadata['log_path']
|
||||||
except yaml.YAMLError:
|
except yaml.YAMLError:
|
||||||
error = m18n.n('log_corrupted_md_file', file=md_path)
|
error = m18n.n('log_corrupted_md_file', md_file=md_path)
|
||||||
if os.path.exists(log_path):
|
if os.path.exists(log_path):
|
||||||
logger.warning(error)
|
logger.warning(error)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue