mirror of
https://github.com/vale981/ablog
synced 2025-03-06 01:31:39 -05:00
Not using status iterator.
This commit is contained in:
parent
e910717893
commit
cafd2694af
1 changed files with 4 additions and 0 deletions
|
@ -350,6 +350,10 @@ def init_ablog(app):
|
|||
|
||||
def register_posts(app):
|
||||
|
||||
for docname, postinfo in getattr(app.env, 'ablog_posts', {}).items():
|
||||
app.ablog.register(docname, postinfo)
|
||||
|
||||
return
|
||||
from sphinx.util.console import bold, purple, darkgreen, term_width_line
|
||||
ablog_posts = getattr(app.env, 'ablog_posts', {})
|
||||
iterator = ablog_posts.keys()
|
||||
|
|
Loading…
Add table
Reference in a new issue