Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. reader = MARCReader(file(input), to_unicode=True)
  2.  
  3. Traceback (most recent call last):
  4. File "convert_bib.py", line 10, in <module>
  5. reader = MARCReader(file(input), to_unicode=True)
  6. TypeError: __init__() got an unexpected keyword argument 'to_unicode'
  7.  
  8. class MARCReader(Reader):
  9. <snip>
  10. def __init__(self, marc_target, to_unicode=True, force_utf8=False,
  11. hide_utf8_warnings=False, utf8_handling='strict'):
  12. <snip>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement