Skip to content

Commit

Permalink
Added non-strict option to USMARC syntax in zoom interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdutton committed Jun 24, 2010
1 parent e350c41 commit de560f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PyZ3950/zoom.py
Expand Up @@ -803,6 +803,8 @@ def render (item, level = 1):

_RecordType ('USMARC', z3950.Z3950_RECSYN_USMARC_ov,
renderer = lambda v: str(zmarc.MARC(v)))
_RecordType ('USMARCnonstrict', z3950.Z3950_RECSYN_USMARC_ov,
renderer = lambda v: str(zmarc.MARC(v, strict=0)))
_RecordType ('UKMARC', z3950.Z3950_RECSYN_UKMARC_ov,
renderer = lambda v: str(zmarc.MARC(v)))
_RecordType ('SUTRS', z3950.Z3950_RECSYN_SUTRS_ov)
Expand Down

0 comments on commit de560f1

Please sign in to comment.