Commit aa817f1b authored by Alex Willmer's avatar Alex Willmer Committed by David Wilson

Handle failure to import the ast module

parent dd8271f0
import ast
try:
import ast
except ImportError:
# ast module is not available in Python 2.4.x, instead we shall use the
# the compiler module as a fallback
ast = None
import commands
import compiler
import errno
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment