Skip to content

Commit

Permalink
修复gog英文简介单词间空格被删除问题
Browse files Browse the repository at this point in the history
修复gog英文简介单词间空格被删除问题
  • Loading branch information
TitaniumLithium committed Aug 25, 2022
1 parent 26884b9 commit 5a34f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infogen/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ def _gen_gog(self):
gog_descr = gog_bs.find("div", class_ = "description")
gog_game_data["descr"] = (
html2ubb(str(gog_descr)).strip()
.replace(" ", "")
.replace(" ", "")
.replace("\n\n\n\n\n", "")
.replace("\n\n", "")
.replace("]\n", "]")
Expand Down

0 comments on commit 5a34f22

Please sign in to comment.