Skip to content

Commit c25de38

Browse files
committed
✨ mods:issuance
1 parent 814bc57 commit c25de38

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/mods4pandas/mods4pandas.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ def only_standard_title(title_info):
320320
elif tag == "{http://www.loc.gov/mods/v3}mods":
321321
# XXX Ignore nested mods:mods for now (used in mods:subject)
322322
pass
323+
elif tag == "{http://www.loc.gov/mods/v3}issuance":
324+
value["issuance"] = (
325+
TagGroup(tag, group).is_singleton().has_no_attributes().text()
326+
)
323327
else:
324328
if raise_errors:
325329
raise ValueError('Unknown tag "{}"'.format(tag))

0 commit comments

Comments
 (0)