fix for testing have readline

This commit is contained in:
Anthony Scopatz 2016-01-19 11:49:19 -05:00
parent 09c476dba9
commit 3d6fba5200

View file

@ -14,7 +14,7 @@ def is_readline_available():
try:
import readline
return True
except ImportError:
except Exception: # pyreadline will sometimes fail in strange ways
return False