Instead of destroying the process when we can't import, we'll just re-raise

Signed-off-by: Tyler Ballance <tyler@slide.com>
This commit is contained in:
Tyler Ballance 2009-04-07 19:21:51 -07:00
parent d0b25719c2
commit 8a9e8a5694
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ except ImportError:
print '===> Please make sure you have it installed and locatable from PYTHONPATH'
print ' http://pywebsvcs.sourceforge.net/'
print
sys.exit(-1)
raise
class GetTokenError(Exception):
pass