Get rid of most of the remaining uses of <>. There's still Tools/* thogh.

This commit is contained in:
Neal Norwitz 2006-08-29 04:39:12 +00:00
parent c4996ba794
commit 3bd844e695
16 changed files with 23 additions and 49 deletions

View file

@ -246,7 +246,7 @@ def browse_search(selector, host, port):
def browse_telnet(selector, host, port):
if selector:
print 'Log in as', repr(selector)
if type(port) <> type(''):
if type(port) != type(''):
port = repr(port)
sts = os.system('set -x; exec telnet ' + host + ' ' + port)
if sts: