Skip to content
Snippets Groups Projects
Verified Commit 8041bd10 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

backups test: use info instead of warning for disabled

parent c55c1696
No related branches found
No related tags found
No related merge requests found
...@@ -152,8 +152,7 @@ def check_local_backup(path: str) -> bool: ...@@ -152,8 +152,7 @@ def check_local_backup(path: str) -> bool:
latest = os.path.join(backup_folder, "latest") latest = os.path.join(backup_folder, "latest")
if backup_folder.endswith(".disabled"): if backup_folder.endswith(".disabled"):
# skip if disabled # skip if disabled
u.warning("disabled") u.info("disabled")
all_ok = False
elif os.path.exists(latest): elif os.path.exists(latest):
# resolve symbolic link # resolve symbolic link
latest = os.path.realpath(latest) latest = os.path.realpath(latest)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment