q
q copied to clipboard
header mis-interpretation
Using TAB delimited header (-T) when running v3.1.6: A file with the header that I've attached is generating an error that makes it appear that it is parsing the header with additional field separators: export_csv_20230418-185741-header.csv
The error I'm seeing:
Bad header row: Header must contain only strings and not numbers or empty strings: 'Start Netmask Prefix Name Terminal Class,param:,domain Class,param:,mid Class,param:,workgroup Class,param:,region Class,param:,vrf Class,param:,eip_acls Class,param:,dhcp_failover_name Class,param:,gateway Network,class,parameters,(all)'
'param:': Column name is duplicated
Traceback (most recent call last):
File "
It looks like the error message is telling you exactly what's wrong:
'param:': Column name is duplicated
You have more than one column called param:
. Try fixing it by renaming the additional param
columns as param2
, param3
, etc.