1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 14:22:25 +03:00

try to avoid spammy "No such file or directory" errors

it doesn't happen on my machine, not sure why it does that
This commit is contained in:
AnotherTest 2020-02-27 23:09:43 +03:30
parent 64eb1e7d56
commit 8ff20ab862

View File

@ -87,7 +87,8 @@ def serve_requests():
try:
serve_one_request()
except Exception as e:
print(e)
# print(e)
pass
th = Thread(target=serve_requests)
@ -104,8 +105,13 @@ def transform(do_print=True):
print('Error:', [x for x in lines if x.strip() != ''][-1], end='')
return
else:
with open('xsl_error.xml', 'r') as f:
print(f.read(), end='')
try:
with open('xsl_error.xml', 'r') as f:
print(f.read(), end='')
except:
# nothing interesting happened
# HOW?
pass
tree = ET.parse('xslt_output.xml')
if do_print:
@ -143,10 +149,10 @@ else:
for a in tree.iter('mal'):
for a in a.iter('stdin'):
a.text = x
transform()
readline.write_history_file('.xslt_mal_history')
finished = True
th.join()
th.join()