diff options
Diffstat (limited to 'python/dbus_bindings.pyx')
| -rw-r--r-- | python/dbus_bindings.pyx | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/python/dbus_bindings.pyx b/python/dbus_bindings.pyx index c693a3d0..a96a5adc 100644 --- a/python/dbus_bindings.pyx +++ b/python/dbus_bindings.pyx @@ -893,7 +893,7 @@ cdef class MessageIter:          ptype = type(value)          ret = ""          if ptype == bool: -            ret = TYPE_BOOL +            ret = TYPE_BOOLEAN              ret = str(chr(ret))          elif ptype == int:              ret = TYPE_INT32 @@ -937,7 +937,7 @@ cdef class MessageIter:              ret = TYPE_BYTE              ret = str(chr(ret))          elif isinstance(value, Boolean) or value == Boolean: -            ret = TYPE_BOOL +            ret = TYPE_BOOLEAN              ret = str(chr(ret))          elif isinstance(value, Int16) or value == Int16:              ret = TYPE_INT16  | 
