Skip to content

Commit 6ade322

Browse files
authored
Merge pull request #10725 from hornc/master
Exclude MARC notes field 583
2 parents 08ac40d + c4ad47d commit 6ade322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openlibrary/catalog/marc/parse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ def read_series(rec: MarcBase) -> list[str]:
583583
def read_notes(rec: MarcBase) -> str:
584584
found = []
585585
for tag in range(500, 590):
586-
if tag in (505, 520):
586+
if tag in (505, 520, 583):
587587
continue
588588
fields = rec.get_fields(str(tag))
589589
for f in fields:

0 commit comments

Comments
 (0)