request byte_arrays from the DS
This commit is contained in:
parent
afb63981fa
commit
404a7b546a
@ -77,9 +77,10 @@ def find(query, properties, reply_handler, error_handler):
|
|||||||
logging.debug('dbus_helpers.find: %r %r' % (query, properties))
|
logging.debug('dbus_helpers.find: %r %r' % (query, properties))
|
||||||
if reply_handler and error_handler:
|
if reply_handler and error_handler:
|
||||||
return _get_data_store().find(query, properties,
|
return _get_data_store().find(query, properties,
|
||||||
reply_handler=reply_handler, error_handler=error_handler)
|
reply_handler=reply_handler, error_handler=error_handler,
|
||||||
|
byte_arrays=True)
|
||||||
else:
|
else:
|
||||||
return _get_data_store().find(query, properties)
|
return _get_data_store().find(query, properties, byte_arrays=True)
|
||||||
|
|
||||||
def mount(uri, options, timeout=-1):
|
def mount(uri, options, timeout=-1):
|
||||||
return _get_data_store().mount(uri, options, timeout=timeout)
|
return _get_data_store().mount(uri, options, timeout=timeout)
|
||||||
|
Loading…
Reference in New Issue
Block a user