- Improved error reporting.

This commit is contained in:
ccremers 2006-11-13 10:38:47 +00:00
parent 37b855d9ec
commit 4cab253e7c
2 changed files with 20 additions and 4 deletions

View File

@ -10,13 +10,22 @@
# cElementTree module
#
import sys
# Check for cElementTree presence. Otherwise use ElementTree.
useiter = True
try:
import cElementTree
except ImportError:
useiter = False
from elementtree import ElementTree
try:
from elementtree import ElementTree
except ImportError:
print """
ERROR: Could not locate elementtree or cElementTree package.
Please install one of them in order to work with the Scyther python interface.
"""
sys.exit(1)
## Simply pick cElementTree
#import cElementTree
@ -28,7 +37,6 @@ import Term
import Attack
import Trace
import Claim
import sys
class XMLReader(object):

View File

@ -3,8 +3,16 @@
#---------------------------------------------------------------------------
""" Import externals """
import wx
import sys
try:
import wx
except ImportError:
print """
ERROR: Could not find the required wxPython package.
Please install this package in order to use the graphical user
interface of Scyther.
"""
sys.exit(1)
import os
from optparse import OptionParser, SUPPRESS_HELP