projects
/
confparser-old
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91b0825
)
Fixed bug in message about custom error code.
author
Frederic Jolliton
<frederic@jolliton.com>
Thu, 11 Nov 2004 15:01:53 +0000
(15:01 +0000)
committer
Frederic Jolliton
<frederic@jolliton.com>
Thu, 11 Nov 2004 15:01:53 +0000
(15:01 +0000)
* Fixed the bug when generating the log for the case were we
return a custom error code.
git-archimport-id: frederic@jolliton.com--2004-private/mail-filter--main--0.1.1--patch-5
mailfilter.py
patch
|
blob
|
history
diff --git
a/mailfilter.py
b/mailfilter.py
index
5fbde34
..
7f00a38
100644
(file)
--- a/
mailfilter.py
+++ b/
mailfilter.py
@@
-815,7
+815,7
@@
def dispatchMail() :
# here (mail is not saved.)
#
if isinstance( action , CustomErrorCodeAction ) :
- logMessage( 'Custom exit code is %d.' %
r
.code )
+ logMessage( 'Custom exit code is %d.' %
action
.code )
return action.code
#