Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
32d815f1
Commit
32d815f1
authored
Oct 24, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formulator: fix FormToXML on py2 with non ascii form group names
parent
e33f1b6c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
product/Formulator/FormToXML.py
product/Formulator/FormToXML.py
+1
-1
No files found.
product/Formulator/FormToXML.py
View file @
32d815f1
...
...
@@ -26,7 +26,7 @@ def formToXML(form, prologue=1):
# export form groups
for
group
in
form
.
get_groups
(
include_empty
=
1
):
group_element
=
SubElement
(
groups
,
'group'
)
group_element
.
append
(
E
.
title
(
group
))
group_element
.
append
(
E
.
title
(
str2unicode
(
group
,
encoding
)
))
fields
=
SubElement
(
group_element
,
'fields'
)
for
field
in
form
.
get_fields_in_group
(
group
,
include_disabled
=
1
):
...
...
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