Merge "py3: Fix list_entries for netlink_lib"

This commit is contained in:
Zuul 2018-05-16 23:27:11 +00:00 committed by Gerrit Code Review
commit 37bf4889ba
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class ConntrackManager(object):
conntrack, type_,
nl_constants.NFCT_O_PLAIN,
nl_constants.NFCT_OF_TIME)
entries.append(raw_entry.value)
entries.append(raw_entry.value.decode('utf-8'))
return nl_constants.NFCT_CB_CONTINUE
self._callback_register(nl_constants.NFCT_T_ALL,