manuf: Handle backslashes in company names

[skip ci]
This commit is contained in:
Gerald Combs 2023-08-27 12:33:11 -07:00
parent 97823acfd6
commit d437d4c5b9
1 changed files with 2 additions and 0 deletions

View File

@ -262,6 +262,8 @@ def main():
manuf = ieee_row[2].strip()
# The Organization Name field occasionally contains HTML entities. Undo them.
manuf = html.unescape(manuf)
# "Watts A\S"
manuf = manuf.replace('\\', '/')
if manuf == 'IEEE Registration Authority':
continue
if manuf == 'Private':