Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Yusei Tahara
erp5
Commits
a7e6e26d
Commit
a7e6e26d
authored
12 years ago
by
Kazuhiko Shiozaki
Browse files
Options
Download
Email Patches
Plain Diff
fix possible UnicodeEncodeError in ZopeFind.
parent
734b70c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
product/Formulator/Field.py
product/Formulator/Field.py
+2
-0
No files found.
product/Formulator/Field.py
View file @
a7e6e26d
...
...
@@ -449,6 +449,8 @@ class Field:
return
obj
.
method_name
elif
obj_type
is
TALESField
.
TALESMethod
:
return
obj
.
_text
elif
obj_type
is
unicode
:
return
obj
.
encode
(
'utf-8'
)
return
str
(
obj
)
return
''
.
join
(
map
(
getSearchSource
,
(
self
.
values
.
values
()
+
self
.
tales
.
values
()
+
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment