8000 Ignore utf8 python error · VXAPPS/sqlite_functions@a776e09 · GitHub
[go: up one dir, main page]

Skip to content

Commit a776e09

Browse files
committed
Ignore utf8 python error
1 parent 5291ae8 commit a776e09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/post_doxygen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
# Fix all .html files
4444
for file in os.listdir(folder):
4545
if file.endswith('.html'):
46-
f = open(os.path.join(folder, file), 'r')
46+
f = open(os.path.join(folder, file), 'r', errors='ignore')
4747
filedata = f.read()
4848
f.close()
4949

@@ -72,7 +72,7 @@
7272
# Fix all .js files
7373
for file in os.listdir(folder):
7474
if file.endswith('.js'):
75-
f = open(os.path.join(folder, file), 'r')
75+
f = open(os.path.join(folder, file), 'r', errors='ignore')
7676
filedata = f.read()
7777
f.close()
7878

0 commit comments

Comments
 (0)
0