Removed readline requirement from goodfet console, as it breaks Windows compatibility.
authortravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Mon, 24 May 2010 04:55:47 +0000 (04:55 +0000)
committertravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Mon, 24 May 2010 04:55:47 +0000 (04:55 +0000)
Will reintroduce with the pure-python implementation.

git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@563 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

client/goodfet

index ba43730..d580c26 100755 (executable)
@@ -5,8 +5,8 @@
 #
 # This code is being rewritten and refactored.  You've been warned!
 
 #
 # This code is being rewritten and refactored.  You've been warned!
 
-import sys, os, readline, code, binascii;
-#import rlcompleter;
+import sys, os, code, binascii;
+#import rlcompleter, readline;
 
 from GoodFET import GoodFET, getClient;
 from GoodFETConsole import GoodFETConsole;
 
 from GoodFET import GoodFET, getClient;
 from GoodFETConsole import GoodFETConsole;