Skip to content

Commit

Permalink
Refactor in commands-intro.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Jan 10, 2014
1 parent c9ba4ba commit 1b7ce64
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ circus.egg-info
.Python
.coverage
html
docs/source/commands*
docs/source/for-ops/commands/
docs/source/for-ops/commands.rst
docs/build
local
examples/test.log
Expand Down
3 changes: 2 additions & 1 deletion docs/circus_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def generate_commands(app):
items = commands.items()
items = sorted(items)

with open(tocname, "a") as toc:
with open(tocname, "w") as toc:
toc.write(".. include:: commands-intro%s\n\n" % ext)
toc.write("circus-ctl commands\n")
toc.write("-------------------\n\n")

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def __getattr__(self, name):

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = []
exclude_patterns = ['**/commands-intro.rst']

# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
Expand Down
File renamed without changes.

0 comments on commit 1b7ce64

Please sign in to comment.