except ImportError as xcpt:
print "Import Error: " + xcpt.message
Gets you a deprecation warning in 2.6 because message is going away. Stackoverflow
How should you be dealing with ImportError? (Note, this is a built-in exception, not one of my making....)