mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-27 01:24:42 +00:00
Fix parsing IANA scheme CSV with obsolete flag
This commit is contained in:
parent
ff7e157a18
commit
69d35760f2
1 changed files with 1 additions and 0 deletions
|
|
@ -101,6 +101,7 @@ def parse_csv_file(url, res):
|
|||
first_row = False
|
||||
else:
|
||||
scheme, template, description, status, urisupport, reference, notes = row
|
||||
scheme = scheme.replace(" (OBSOLETE)", "") # remove the HTTP historic experiments flag
|
||||
if status not in res:
|
||||
res[status] = {}
|
||||
res[status][scheme] = description
|
||||
|
|
|
|||
Loading…
Reference in a new issue