~ubuntu-branches/ubuntu/karmic/python-docutils/karmic

« back to all changes in this revision

Viewing changes to docutils/parsers/rst/directives/html.py

  • Committer: Bazaar Package Importer
  • Author(s): martin f. krafft
  • Date: 2006-07-10 11:45:05 UTC
  • mfrom: (2.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060710114505-otkhqcslevewxmz5
Tags: 0.4-3
Added build dependency on python-central (closes: #377580).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Author: David Goodger
2
2
# Contact: goodger@users.sourceforge.net
3
 
# Revision: $Revision: 1.9 $
4
 
# Date: $Date: 2002/10/24 00:56:57 $
 
3
# Revision: $Revision: 3038 $
 
4
# Date: $Date: 2005-03-14 17:16:57 +0100 (Mon, 14 Mar 2005) $
5
5
# Copyright: This module has been placed in the public domain.
6
6
 
7
7
"""
34
34
            'Empty meta directive.',
35
35
            nodes.literal_block(block_text, block_text), line=lineno)
36
36
        node += error
37
 
    return node.get_children()
 
37
    return node.children
38
38
 
39
39
meta.content = 1
40
40