修复文章description里包含双引号导致的BUG
This commit is contained in:
parent
039e785ef5
commit
8131149b55
2
Gmeek.py
2
Gmeek.py
@ -297,7 +297,7 @@ class GMEEK():
|
||||
period="."
|
||||
else:
|
||||
period=self.blogBase["rssSplit"]
|
||||
self.blogBase[listJsonName][postNum]["description"]=issue.body.split(period)[0]+period
|
||||
self.blogBase[listJsonName][postNum]["description"]=issue.body.split(period)[0].replace("\"", "\'")+period
|
||||
|
||||
self.blogBase[listJsonName][postNum]["top"]=0
|
||||
for event in issue.get_events():
|
||||
|
||||
Loading…
Reference in New Issue
Block a user