Commit a4bcf4d4 authored by Jérome Perrin's avatar Jérome Perrin

fixup! py2/py3: Make Products code compatible with both python2 and python3.

parent 237c93d4
......@@ -5,11 +5,7 @@ if brain.getValidationState() == 'embedded':
else:
reference = brain.getReference()
import six
return six.text_type(
"javascript:SelectFile('%s?format=%s')" % (
return u"javascript:SelectFile('%s?format=%s')" % (
reference.replace("'", "\\'"),
context.getPortalObject().portal_preferences.getPreferredImageFormat()
),
'utf-8',
context.getPortalObject().portal_preferences.getPreferredImageFormat(),
)
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment