client code wasn't modified to follow changes in the model

This commit is contained in:
Martin Poirier
2009-09-11 18:31:51 +00:00
parent ee768ada68
commit 6c3c748daa

View File

@@ -110,7 +110,7 @@ def clientSendJob(conn, scene, anim = False, chunks = 5):
# if not ACCEPTED (but not processed), send files
if response.status == http.client.ACCEPTED:
for filepath in job.files:
for filepath, start, end in job.files:
f = open(filepath, "rb")
conn.request("PUT", "file", f, headers={"job-id": job_id, "job-file": filepath})
f.close()