Remove extranious print

This commit is contained in:
Robin Malley 2022-11-23 22:11:40 +00:00
parent 9daf7e90cd
commit 720e826d4d
1 changed files with 0 additions and 1 deletions

View File

@ -115,7 +115,6 @@ end
--hex encoded string to arbitrary data
function util.decode_unlisted(str)
print("str was:",str)
local output = {}
for byte in str:gmatch("%x%x") do
table.insert(output, string.char(tonumber(byte,16)))