#2299: Really fix buddy properties coming through as arrays of bytes

This commit is contained in:
Dan Williams 2007-08-20 15:56:49 -04:00
parent 4e9c8c6e11
commit d0caf99277
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -1,3 +1,5 @@
* #2299: Really fix buddy properties coming through as arrays of bytes (dcbw)
Snapshot b24a28a77d Snapshot b24a28a77d
* #2012: Fix palette position on the left frame panel. (marco) * #2012: Fix palette position on the left frame panel. (marco)

View File

@ -103,7 +103,7 @@ class Buddy(gobject.GObject):
def _get_properties_helper(self): def _get_properties_helper(self):
"""Retrieve the Buddy's property dictionary from the service object """Retrieve the Buddy's property dictionary from the service object
""" """
props = self._buddy.GetProperties() props = self._buddy.GetProperties(byte_arrays=True)
if not props: if not props:
return {} return {}
return props return props