mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-10 06:34:24 +08:00
fix: encoding error
This commit is contained in:
parent
580599ffe8
commit
1d21359a5a
@ -14,7 +14,7 @@ import concurrent
|
||||
import ssl
|
||||
from urllib.parse import urlparse
|
||||
|
||||
version = "V1.1.1"
|
||||
version = "V1.1.2"
|
||||
print(f"### Loading: ComfyUI-Manager ({version})")
|
||||
|
||||
|
||||
|
||||
@ -86,6 +86,7 @@ try:
|
||||
class Logger:
|
||||
def __init__(self, is_stdout):
|
||||
self.is_stdout = is_stdout
|
||||
self.encoding = "utf-8"
|
||||
|
||||
def fileno(self):
|
||||
try:
|
||||
@ -137,10 +138,6 @@ try:
|
||||
|
||||
def reconfigure(self, *args, **kwargs):
|
||||
pass
|
||||
|
||||
def encoding():
|
||||
return "utf-8"
|
||||
|
||||
|
||||
def close_log():
|
||||
log_file.close()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user