Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
8ac0c975
Commit
8ac0c975
authored
May 16, 2022
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMFCategory: don't tolerate errors calling display_id in Renderer
This just hides issues.
parent
eef80b9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
product/CMFCategory/Renderer.py
product/CMFCategory/Renderer.py
+1
-8
No files found.
product/CMFCategory/Renderer.py
View file @
8ac0c975
...
@@ -171,14 +171,7 @@ class Renderer(Filter):
...
@@ -171,14 +171,7 @@ class Renderer(Filter):
if
self
.
display_method
is
not
None
:
if
self
.
display_method
is
not
None
:
label
=
self
.
display_method
(
value
)
label
=
self
.
display_method
(
value
)
elif
self
.
display_id
is
not
None
:
elif
self
.
display_id
is
not
None
:
try
:
label
=
value
.
getProperty
(
self
.
display_id
)
label
=
value
.
getProperty
(
self
.
display_id
)
except
ConflictError
:
raise
except
:
LOG
(
'CMFCategory'
,
PROBLEM
,
'Renderer was unable to call %s on %s'
%
(
self
.
display_id
,
value
.
getRelativeUrl
()))
label
=
None
else
:
else
:
label
=
None
label
=
None
# Get the url.
# Get the url.
...
...
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