fix python3

This commit is contained in:
clowwindy 2015-01-12 23:19:24 +08:00
parent 32a6b8fd7a
commit 5e476843ec

View file

@ -90,7 +90,6 @@ try:
for fd in r:
line = fd.readline()
sys.stderr.write(line)
if not line:
if stage == 2 and fd == p3.stdout:
stage = 3
@ -98,6 +97,7 @@ try:
stage = 5
if bytes != str:
line = str(line, 'utf8')
sys.stderr.write(line)
if line.find('starting local') >= 0:
local_ready = True
if line.find('starting server') >= 0: