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
nexedi
erp5
Commits
64f2b6bc
Commit
64f2b6bc
authored
2 years ago
by
Kazuhiko Shiozaki
Committed by
Arnaud Fontaine
2 years ago
Browse files
Options
Download
Email Patches
Plain Diff
fixup! fixup! py2/py3: stop using deprecated string functions, that are removed in python 3.
parent
f6faeec9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.ImmobilisationMovement.py
...portal_components/document.erp5.ImmobilisationMovement.py
+1
-1
No files found.
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.ImmobilisationMovement.py
View file @
64f2b6bc
...
...
@@ -101,7 +101,7 @@ class ImmobilisationMovement(Movement, XMLObject):
def
checkValuesAreNotNone
(
property_list
):
errors
=
[]
for
key
,
value
,
name
in
property_list
:
value
=
'get'
+
''
.
join
(
capitalize
(
e
)
for
e
in
value
.
split
(
'_'
))
value
=
'get'
+
''
.
join
(
e
.
capitalize
()
for
e
in
value
.
split
(
'_'
))
value
=
getattr
(
self
,
value
,
None
)
if
value
is
not
None
:
value
=
value
()
...
...
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