We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7826f88 commit 85aeee1Copy full SHA for 85aeee1
webArchiver.py
@@ -44,7 +44,7 @@
44
if "datetimeformat" in config["DEFAULT"]:
45
datetimeformat=config["DEFAULT"]["datetimeformat"]
46
if "hashblocksize" in config["DEFAULT"]:
47
- hashblocksize=config["DEFAULT"]["hashblocksize"]
+ hashblocksize=int(config["DEFAULT"]["hashblocksize"])
48
if "hashtype" in config["DEFAULT"]:
49
hashertype=config["DEFAULT"]["hashtype"]
50
if "foldersave" in config["DEFAULT"]:
@@ -64,7 +64,7 @@
64
if piargs.datetimeformat is not None:
65
datetimeformat=piargs.datetimeformat
66
if piargs.hashblocksize is not None:
67
- hashblocksize=piargs.hashblocksize
+ hashblocksize=int(piargs.hashblocksize)
68
if piargs.hashtype is not None:
69
hashertype=piargs.hashtype
70
#define functions
0 commit comments