Fix frida-repl on Windows

This commit is contained in:
Ole André Vadla Ravnås
2015-05-10 12:46:12 +02:00
parent 5a7e4abbb8
commit e8b811f326
+4 -1
View File
@@ -16,7 +16,10 @@ WARNING: Unable to find package 'gnureadline' needed for tab completion;
please brace yourself for a massively degraded user experience!
""" + Style.RESET_ALL)
else:
import readline
try:
import readline
except Exception as e:
HAVE_READLINE = False
import sys
import threading
import os