fixed unicode bs

This commit is contained in:
Hellow 2023-04-06 17:47:35 +02:00
parent 1f0ff801d8
commit 7912a8bd4f

View File

@ -47,7 +47,7 @@ def print_cute_message():
try:
print(message)
except UnicodeEncodeError:
print((c for c in message if 0 < ord(c) < 127))
print(str(c for c in message if 0 < ord(c) < 127))
def cli(genre: str = None, download_all: bool = False):