From: travisutk Date: Mon, 24 May 2010 04:55:47 +0000 (+0000) Subject: Removed readline requirement from goodfet console, as it breaks Windows compatibility. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=65ed9e497c986b21e26a4e0e24c4acff15ac9701 Removed readline requirement from goodfet console, as it breaks Windows compatibility. 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 --- diff --git a/client/goodfet b/client/goodfet index ba43730..d580c26 100755 --- a/client/goodfet +++ b/client/goodfet @@ -5,8 +5,8 @@ # # 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;