Fix for ipalib 4.7.2 (Fedora 29)

This fixes u"unknown command 'b'xxx''" errors.

Change-Id: I155bd37e7007fce4e083f8e5f7c4a3511a44ae4a
This commit is contained in:
Grzegorz Grasza 2019-01-29 15:12:56 +01:00
parent 5633d348e3
commit fe512714e2
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class IPANovaJoinBase(object):
def _add_batch_operation(self, command, *args, **kw):
"""Add an IPA call to the batch operation"""
self.batch_args.append({
"method": command,
"method": six.text_type(command),
"params": [args, kw],
})