Skip to content

Commit

Permalink
Missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanSara authored May 4, 2022
1 parent 1feeef8 commit 8d19a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zanzocam/web_ui/pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def logs_page():
percentage_occupancy = (total_logs_size / (total_logs_size + free_disk_space)) * 100

no_logs_dir = False
send_logs = read_flag_file(path=SEND_LOGS_FLAG, default=YES, catch_errors=True)
send_logs = read_flag_file(path=SEND_LOGS_FLAG, default="YES", catch_errors=True)
logs_count=len(logs.keys())
logs_size=f"{(total_logs_size / 1024):.2f} KB"
log_disk_occupancy=f"{percentage_occupancy:.4f}%"
Expand Down

0 comments on commit 8d19a5b

Please sign in to comment.