Fixed f-string

This commit is contained in:
Rain Clark 2024-04-05 17:02:58 -04:00
parent 5ee8e47c54
commit a0ae115748

View File

@ -129,7 +129,7 @@ def main():
if channel not in downloading:
download_stream(channel)
else:
print("f{channel} is already downloading")
print(f"{channel} is already downloading")
write_log(channel)
else:
print("\033[1m" + channel + "\033[0m is \033[31mnot live\033[0m.")