From 2cb8499e4581a94262e7c4e588e9d408e479f69b Mon Sep 17 00:00:00 2001 From: Matthew Einhorn Date: Fri, 18 Apr 2014 15:44:52 -0400 Subject: [PATCH 1/2] allow Observeable list asignemnt to VariableListProperty. Fixes #2079. From 92cf516579ee16f76d472dba94803e5055615418 Mon Sep 17 00:00:00 2001 From: Matthew Einhorn Date: Fri, 18 Apr 2014 15:46:38 -0400 Subject: [PATCH 2/2] allow Observeable list asignemnt to VariableListProperty. Fixes #2079. --- kivy/properties.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/properties.pyx b/kivy/properties.pyx index 684e5a1ce..b2faea503 100644 --- a/kivy/properties.pyx +++ b/kivy/properties.pyx @@ -1280,7 +1280,7 @@ cdef class VariableListProperty(Property): return x tp = type(x) - if tp is list or tp is tuple: + if isinstance(x, (list, tuple)): l = len(x) if l == 1: y = self._convert_numeric(obj, x[0])