Remove useless error output

This commit is contained in:
yoshiko2
2022-08-26 02:43:50 +08:00
parent 4b9b2675e2
commit 54440de9b1
3 changed files with 8 additions and 6 deletions

View File

@@ -162,7 +162,7 @@ class Parser:
}
dic = self.extradict(dic)
except Exception as e:
print(e)
#print(e)
dic = {"title": ""}
js = json.dumps(dic, ensure_ascii=False, sort_keys=True, separators=(',', ':'))
return js