diff options
| author | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-08-17 03:44:43 +0000 |
|---|---|---|
| committer | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2007-08-17 03:44:43 +0000 |
| commit | a21771effb2a8a09dde2811471efb9c60064e132 (patch) | |
| tree | 712a2b9beed934d13e2b4c7e318235e5a587d9c6 | |
| parent | 046735bdbc915c6605466a4de5c5324ac08b443d (diff) | |
| download | docutils-a21771effb2a8a09dde2811471efb9c60064e132.tar.gz | |
renamed directive class to Subdocs
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5406 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
| -rw-r--r-- | docutils/parsers/rst/directives/__init__.py | 2 | ||||
| -rw-r--r-- | docutils/parsers/rst/directives/parts.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docutils/parsers/rst/directives/__init__.py b/docutils/parsers/rst/directives/__init__.py index 8b0457883..cbee4bf84 100644 --- a/docutils/parsers/rst/directives/__init__.py +++ b/docutils/parsers/rst/directives/__init__.py @@ -45,7 +45,7 @@ _directive_registry = { 'sectnum': ('parts', 'Sectnum'), 'header': ('parts', 'Header'), 'footer': ('parts', 'Footer'), - 'subdocs': ('parts', 'Subdocuments'), + 'subdocs': ('parts', 'Subdocs'), 'docset-root': ('parts', 'DocsetRoot'), #'footnotes': ('parts', 'footnotes'), #'citations': ('parts', 'citations'), diff --git a/docutils/parsers/rst/directives/parts.py b/docutils/parsers/rst/directives/parts.py index 60c041fb1..86ae08540 100644 --- a/docutils/parsers/rst/directives/parts.py +++ b/docutils/parsers/rst/directives/parts.py @@ -128,7 +128,7 @@ class Footer(Directive): return [] -class Subdocuments(Directive): +class Subdocs(Directive): """Include sub-documents at the current position.""" |
