mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Update log.py: fix fstring with no arg
This commit is contained in:
parent
f6d38bebee
commit
0a5dd1b099
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ def log_show(
|
|||
logs = list(log_list()["operation"])
|
||||
|
||||
if position > len(logs):
|
||||
raise YunohostValidationError(f"There isn't that many logs", raw_msg=True)
|
||||
raise YunohostValidationError("There isn't that many logs", raw_msg=True)
|
||||
|
||||
path = logs[-position]["path"]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue