2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 17:43:14 +00:00

Fix typo in pxe handler

This commit is contained in:
Jarrod Johnson 2020-05-29 12:58:14 -04:00
parent c1576e9787
commit e648c9c065

View File

@ -115,7 +115,7 @@ def idxtoname(idx):
_idxtoname(idx, name)
ret = name.value.strip()
if not isinstance(ret, str):
ret = ret.deecode('utf8')
ret = ret.decode('utf8')
return ret
_idxtobcast = {}