mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 21:21:17 -07:00
Fixed error in htmldumper
This commit is contained in:
parent
61caacda2b
commit
acfdf9528b
1 changed files with 1 additions and 2 deletions
|
@ -65,7 +65,6 @@ end
|
||||||
|
|
||||||
local function main(args)
|
local function main(args)
|
||||||
|
|
||||||
print(desc)
|
|
||||||
local input = "dumpdata.bin"
|
local input = "dumpdata.bin"
|
||||||
local output = os.date("%Y-%m-%d_%H%M%S.html");
|
local output = os.date("%Y-%m-%d_%H%M%S.html");
|
||||||
for o, a in getopt.getopt(args, 'i:o:h') do
|
for o, a in getopt.getopt(args, 'i:o:h') do
|
||||||
|
@ -77,7 +76,7 @@ local function main(args)
|
||||||
|
|
||||||
local infile = io.open(input, "r")
|
local infile = io.open(input, "r")
|
||||||
if infile == nil then
|
if infile == nil then
|
||||||
return ("Could not read file ", input)
|
return oops("Could not read file ", input)
|
||||||
end
|
end
|
||||||
--lokal skel = require("skel")
|
--lokal skel = require("skel")
|
||||||
local dumpdata = readdump(infile)
|
local dumpdata = readdump(infile)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue