Skip to content

Commit

Permalink
fixing sphinx behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
rjkoch committed May 3, 2021
1 parent 1ec5aac commit 1a14bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def make_envvars():
vd = env.get_docs(var)
s += sec.format(low=var.lower(), title=title, under=under,
docstr=vd.doc, configurable=vd.is_configurable,
default=vd.doc_default, store_as_str=vd.doc_store_as_str)
default=vd.doc_default, store_as_str=vd.can_store_as_str)
s = s[:-9]
fname = os.path.join(os.path.dirname(__file__), 'envvarsbody')
with open(fname, 'w') as f:
Expand Down
1 change: 1 addition & 0 deletions news/sphinx_fix.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
**Changed:**

* changed doc_configurable flag in docs/conf.py to is_configurable
* changed doc_store_as_str flag in docs/conf.py to can_store_as_str

**Deprecated:**

Expand Down

0 comments on commit 1a14bfe

Please sign in to comment.