mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 13:11:18 -07:00
@iceman1001 s lua script fix
This commit is contained in:
parent
22342f6dfe
commit
dcbaa2b582
1 changed files with 2 additions and 1 deletions
|
@ -73,7 +73,8 @@ local function convert_to_emulform(hexdata)
|
||||||
for i = 1, string.len(hexdata),32 do
|
for i = 1, string.len(hexdata),32 do
|
||||||
ascii = ascii ..string.sub(hexdata,i,i+31).."\n"
|
ascii = ascii ..string.sub(hexdata,i,i+31).."\n"
|
||||||
end
|
end
|
||||||
return ascii
|
|
||||||
|
return string.sub(ascii,1,-1)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function main(args)
|
local function main(args)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue