Commented unused rlcompleter import. Might fix win32 compatibility of main client.
[goodfet] / client / goodfet
index ed3b9e8..ba43730 100755 (executable)
@@ -6,17 +6,16 @@
 # This code is being rewritten and refactored.  You've been warned!
 
 import sys, os, readline, code, binascii;
-import rlcompleter;
+#import rlcompleter;
 
 from GoodFET import GoodFET, getClient;
 from GoodFETConsole import GoodFETConsole;
-#from GoodFET import *;
 
 from intelhex import IntelHex;
 
 if(len(sys.argv)==1):
     print "Usage: %s driver\n" % sys.argv[0];
-    print "driver:= GoodFETCC GoodFETMSP430";
+    print "driver:= monitor | cc | avr | spi | msp430";
     print;
     print "This is an unfinished client.  You probably want goodfet.$chip instead.";
     sys.exit(1);