fixed unicode bs
This commit is contained in:
parent
1f0ff801d8
commit
7912a8bd4f
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user