Skip to content

Commit

Permalink
Use safe_unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
esteele committed Sep 18, 2015
1 parent c5b5123 commit 8596325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plone/app/upgrade/v50/betas.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ def to50rc3(context):

if site_properties.hasProperty('typesLinkToFolderContentsInFC'):
value = site_properties.getProperty('typesLinkToFolderContentsInFC')
value = [unicode(a) for a in value]
value = [safe_unicode(a) for a in value]
registry['plone.types_link_to_folder_contents'] = value
site_properties._delProperty('typesLinkToFolderContentsInFC')

Expand Down

0 comments on commit 8596325

Please sign in to comment.