Rename too short variable name in soc.logic.mail_dispatcher module.
Patch by: Pawel Solyga
Reviewed by: to-be-reviewed
--- a/app/soc/logic/mail_dispatcher.py Wed Mar 04 21:14:19 2009 +0000
+++ b/app/soc/logic/mail_dispatcher.py Wed Mar 04 21:15:01 2009 +0000
@@ -117,10 +117,10 @@
try:
# send the message
message.send()
- except Exception, e:
+ except Exception, exception:
import logging
logging.info(context)
- logging.exception(e)
+ logging.exception(exception)
def getDefaultMailSender():
"""Returns the sender that currently can be used to send emails.