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

« back to all changes in this revision

Viewing changes to docutils/writers/pep_html.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2004-05-18 08:36:50 UTC
  • Revision ID: james.westby@ubuntu.com-20040518083650-ife8gdsk0s95m8k1
Tags: 0.3.3-1
* New Upstream release.
  - Closes: #249246
* De-right-aligned the Closes: entries in the changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
import docutils
16
16
from docutils import frontend, nodes, utils
17
17
from docutils.writers import html4css1
 
18
try:
 
19
    import optparse
 
20
except ImportError:
 
21
    import optik as optparse
18
22
 
19
23
 
20
24
class Writer(html4css1.Writer):