fix: remove operator

feat: bump replication version
This commit is contained in:
Swann Martinez 2019-08-23 16:56:59 +02:00
parent 594b82f814
commit 96cc059d4f
No known key found for this signature in database
GPG Key ID: 414CCAFD8DA720E1
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 2b70ff0f8f73d2cf64607c17efb0ed4ae5316e6a
Subproject commit 07a0cfed49617c6b8a17324975075c5354a6d37c

View File

@ -195,7 +195,7 @@ class SessionPropertyRemoveOperator(bpy.types.Operator):
return {"FINISHED"}
except:
return {"CANCELED"}
return {"CANCELLED"}
class SessionPropertyRightOperator(bpy.types.Operator):
@ -226,7 +226,7 @@ class SessionPropertyRightOperator(bpy.types.Operator):
global client
if client:
client.right(self.key, settings.clients)
client.change_right(self.key, settings.clients)
return {"FINISHED"}