From 6c3c748daa9b53cd6f36809b856dcccb24e8afaf Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Fri, 11 Sep 2009 18:31:51 +0000 Subject: client code wasn't modified to follow changes in the model --- release/io/netrender/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/io/netrender/client.py b/release/io/netrender/client.py index bcfff8f5db5..d059387cfcf 100644 --- a/release/io/netrender/client.py +++ b/release/io/netrender/client.py @@ -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() -- cgit v1.2.3