From: martin.holst@gmail.com Date: Thu, 3 Oct 2013 13:26:17 +0000 (+0000) Subject: Fixed error in htmldumper X-Git-Tag: v1.0.0~65 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/acfdf9528b1479155d29c8f107a0b68aec8c8dfb Fixed error in htmldumper --- diff --git a/client/scripts/htmldump.lua b/client/scripts/htmldump.lua index e9d35443..22e785f7 100644 --- a/client/scripts/htmldump.lua +++ b/client/scripts/htmldump.lua @@ -65,7 +65,6 @@ end local function main(args) - print(desc) local input = "dumpdata.bin" local output = os.date("%Y-%m-%d_%H%M%S.html"); 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") if infile == nil then - return ("Could not read file ", input) + return oops("Could not read file ", input) end --lokal skel = require("skel") local dumpdata = readdump(infile)