Skip to content

Commit

Permalink
Merge pull request #372 from EUDAT-B2SHARE/deposit#366
Browse files Browse the repository at this point in the history
fixed #366, unicode exception when depositing
  • Loading branch information
dblommesteijn committed Sep 9, 2014
2 parents 5a3102c + 63e2ceb commit 83433a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invenio/legacy/bibrecord/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ def field_xml_output(field, tag):
(tag, field[1], field[2]))
marcxml += [_subfield_xml_output(subfield) for subfield in field[0]]
marcxml.append(' </datafield>')
return '\n'.join(map(str, marcxml))
return '\n'.join(marcxml)


def record_extract_oai_id(record):
Expand Down

0 comments on commit 83433a3

Please sign in to comment.