Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2013-11-19 15:13:00 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2013-11-19 15:13:00 +0400
commit48bdb7b52fe827cbc21d50cce3079223243414bd (patch)
tree17206cbd76d3b42cd1f5cd635b304b55bb5b2ba8 /render_renderfarmfi
parent3adbc8f30b229e7c9ff465183d5ab0acbbdf921a (diff)
Fix: using wrong variable to test for session acceptance.
Diffstat (limited to 'render_renderfarmfi')
-rw-r--r--render_renderfarmfi/rpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/render_renderfarmfi/rpc.py b/render_renderfarmfi/rpc.py
index c871f4be..bb5d6a45 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()