mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-24 10:37:23 +00:00
Bugfix with encoding errors windows
This commit is contained in:
parent
f8de7e75cc
commit
1bf065fd04
@ -52,10 +52,11 @@ def process_wait(command, serr=subprocess.PIPE, pattern=""):
|
|||||||
p.wait()
|
p.wait()
|
||||||
for line in p.stdout.readlines():
|
for line in p.stdout.readlines():
|
||||||
if isinstance(line, bytes):
|
if isinstance(line, bytes):
|
||||||
line = line.decode('utf-8')
|
line = line.decode('utf-8', errors="ignore")
|
||||||
match = re.search(pattern, line, re.IGNORECASE)
|
match = re.search(pattern, line, re.IGNORECASE)
|
||||||
if match and ret_val == "":
|
if match and ret_val == "":
|
||||||
ret_val = match
|
ret_val = match
|
||||||
|
break
|
||||||
p.stdout.close()
|
p.stdout.close()
|
||||||
p.stderr.close()
|
p.stderr.close()
|
||||||
return ret_val
|
return ret_val
|
||||||
|
Loading…
Reference in New Issue
Block a user