Merge pull request #636 from scopatz/rlerr

fix for testing have readline
This commit is contained in:
Gil Forsyth 2016-01-19 12:13:20 -05:00
commit 7680729dff

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