Fix syntax issue in the client

This commit is contained in:
Thomas S Hatch 2011-03-08 18:22:10 -07:00
parent 6527f897be
commit 85ddd62528

View file

@ -78,8 +78,8 @@ class LocalClient(object):
while True:
for fn_ in os.listdir(jid_dir):
if not ret.has_key(fn_):
ret[fn_] = pickle.loads(open(os.path.join(jid_dir),
fn_, 'return.p'), 'r')
ret[fn_] = pickle.loads(open(os.path.join(jid_dir,
fn_, 'return.p'), 'r'))
if len(ret) >= len(minions):
return ret
if int(time.time()) > start + timeout: