Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Romain Courteaud
erp5_rtl_support
Commits
a1e81657
Commit
a1e81657
authored
Aug 31, 2011
by
Aurel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
this try/except must only catch error from the getattr, not from
script execution
parent
414042ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
product/ERP5/Document/TextDocument.py
product/ERP5/Document/TextDocument.py
+2
-1
No files found.
product/ERP5/Document/TextDocument.py
View file @
a1e81657
...
...
@@ -86,12 +86,13 @@ class TextDocument(CachedConvertableMixin, BaseConvertableFileMixin,
method_id
=
self
.
getTextContentSubstitutionMappingMethodId
()
if
method_id
:
try
:
m
apping
=
guarded_getattr
(
self
,
method_id
)(
**
kw
)
m
ethod
=
guarded_getattr
(
self
,
method_id
)
except
AttributeError
:
LOG
(
'TextDocument'
,
WARNING
,
'could not get the substitution'
' mapping method %s from %r, so the content will not be'
' substituted.'
%
(
method_id
,
self
.
getRelativeUrl
()))
return
text
mapping
=
method
(
**
kw
)
is_str
=
isinstance
(
text
,
str
)
if
is_str
:
...
...
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