Rename too short variable name in soc.logic.mail_dispatcher module.
authorPawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 21:15:01 +0000
changeset 1655 ed1df29f4fd9
parent 1654 b33f52648efe
child 1656 9ffee5d1fe17
Rename too short variable name in soc.logic.mail_dispatcher module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
app/soc/logic/mail_dispatcher.py
--- 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.