Skip to content

Commit

Permalink
修复readme显示文章数量不对的BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
Meekdai committed Apr 7, 2024
1 parent 0a1d0a8 commit a32a663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gmeek.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def createFileName(self,issue,useLabel=False):
print("====== update readme file ======")
workspace_path = os.environ.get('GITHUB_WORKSPACE')
readme="# %s :link: %s \r\n" % (blog.blogBase["title"],blog.blogBase["homeUrl"])
readme=readme+"### :page_facing_up: [%d](%s/tag.html) \r\n" % (len(blog.blogBase["postListJson"]),blog.blogBase["homeUrl"])
readme=readme+"### :page_facing_up: [%d](%s/tag.html) \r\n" % (len(blog.blogBase["postListJson"])-1,blog.blogBase["homeUrl"])
readme=readme+"### :speech_balloon: %d \r\n" % commentNumSum
readme=readme+"### :hibiscus: %d \r\n" % wordCount
readme=readme+"### :alarm_clock: %s \r\n" % datetime.datetime.now(blog.TZ).strftime('%Y-%m-%d %H:%M:%S')
Expand Down

0 comments on commit a32a663

Please sign in to comment.