| ImportError: No module named xslt | Python 2.2.2 /usr/bin/python |
A problem occurred while running a Python script. Here is the sequence of function calls leading up to the error, with the most recent (innermost) call first. The exception attributes are:
__doc__ = "Import can't find module, or can't find name in module."
__getitem__ = <bound method ImportError.__getitem__ of <exceptions.ImportError instance at 0x82466fc>>
__init__ = <bound method ImportError.__init__ of <exceptions.ImportError instance at 0x82466fc>>
__module__ = 'exceptions'
__str__ = <bound method ImportError.__str__ of <exceptions.ImportError instance at 0x82466fc>>
args = ('No module named xslt',)
| /home/f8dy/lib/python/MoinMoin/parser/xslt.py in format(self=<MoinMoin.parser.xslt.Parser instance>, formatter=<MoinMoin.formatter.text_html.Formatter instance>, form=FieldStorage(None, None, [])) |
40 import xml.sax
| 41 import xml.xslt |
42 import xml.xslt.Processor
43
| /home/f8dy/lib/python/MoinMoin/Page.py in send_page(self=<MoinMoin.Page.Page instance>, form=FieldStorage(None, None, []), msg='', **keywords={'count_hit': 1}) |
386 # parse the text and send the page content
| 387 Parser(body).format(self.formatter, form) |
388
389 # check for pending footnotes
| /home/f8dy/lib/python/MoinMoin/cgimain.py in run(properties={}) |
226 try:
| 227 cgitb.handler() |
228 except:
229 apply(cgi.print_exception, saved_exc)