[Bf-extensions-cvs] [48bdb7b] master: Fix: using wrong variable to test for session acceptance.

Nathan Letwory noreply at git.blender.org
Tue Nov 19 12:13:11 CET 2013


Commit: 48bdb7b52fe827cbc21d50cce3079223243414bd
Author: Nathan Letwory
Date:   Tue Nov 19 13:13:00 2013 +0200
http://developer.blender.org/rBA48bdb7b52fe827cbc21d50cce3079223243414bd

Fix: using wrong variable to test for session acceptance.

===================================================================

M	render_renderfarmfi/rpc.py

===================================================================

diff --git a/render_renderfarmfi/rpc.py b/render_renderfarmfi/rpc.py
index c871f4b..bb5d6a4 100644
--- a/render_renderfarmfi/rpc.py
+++ b/render_renderfarmfi/rpc.py
@@ -192,7 +192,7 @@ class RffiRpc(object):
 
     def check_status(self):
         res = self.proxy.service.motd()
-        bpy.rffi_accepts = res['accepting']
+        bpy.rffi_accepting = res['accepting']
         bpy.rffi_motd = res['motd']
 
 rffi = RffiRpc()



More information about the Bf-extensions-cvs mailing list