mirror of
https://github.com/adulau/passive-dns-atlas.git
synced 2025-01-04 23:13:17 +00:00
Counters as integers
This commit is contained in:
parent
12f3e23942
commit
f1218f3380
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ for field in fieldsSagan:
|
|||
for value in c:
|
||||
if value[0] in args.skip:
|
||||
continue
|
||||
table.add_row([value[1],value[0].decode()])
|
||||
table.add_row([int(value[1]),value[0].decode()])
|
||||
print (table)
|
||||
elif args.csvd3js:
|
||||
with open("{}/{}.csv".format(args.outputdir,field.upper()), 'w') as f:
|
||||
|
|
Loading…
Reference in a new issue