Handle failure to import the ast module
This commit is contained in:
parent
dd8271f061
commit
aa817f1b83
|
@ -1,4 +1,9 @@
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue