[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [23131] branches/blender2.5/blender/ release/io/netrender/client.py: client code wasn' t modified to follow changes in the model

Martin Poirier theeth at yahoo.com
Fri Sep 11 20:31:51 CEST 2009


Revision: 23131
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23131
Author:   theeth
Date:     2009-09-11 20:31:51 +0200 (Fri, 11 Sep 2009)

Log Message:
-----------
client code wasn't modified to follow changes in the model

Modified Paths:
--------------
    branches/blender2.5/blender/release/io/netrender/client.py

Modified: branches/blender2.5/blender/release/io/netrender/client.py
===================================================================
--- branches/blender2.5/blender/release/io/netrender/client.py	2009-09-11 18:09:58 UTC (rev 23130)
+++ branches/blender2.5/blender/release/io/netrender/client.py	2009-09-11 18:31:51 UTC (rev 23131)
@@ -110,7 +110,7 @@
 	
 	# 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()





More information about the Bf-blender-cvs mailing list