This repository was archived by the owner on Feb 4, 2020. It is now read-only.

Description
pymarc.field.Field.__str__() uses native str as the arguments to self.data.replace, but in a RawField, data is a bytes object, so we get TypeError: 'str' does not support the buffer interface
RawField should probably have its own implementation of __str__, although it's unclear to me how we should represent a field with an unknown encoding as text...