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
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
Tatuya Kamada
erp5
Commits
fe410861
Commit
fe410861
authored
Dec 08, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ActiveResult: define a __str__ to ease debugging
parent
13a8ed1c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
product/CMFActivity/ActiveResult.py
product/CMFActivity/ActiveResult.py
+6
-0
No files found.
product/CMFActivity/ActiveResult.py
View file @
fe410861
...
...
@@ -78,5 +78,11 @@ class ActiveResult:
"""
return
self
.
severity
>
INFO
def
__str__
(
self
):
"""
String representation of this active result
"""
return
"<%s at %s
\
n
%s - %s
\
n
%s>"
%
(
self
.
__class__
,
id
(
self
),
self
.
severity
,
self
.
summary
,
self
.
detail
)
allow_class
(
ActiveResult
)
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