Re: [afw-general] Mmmm...Strange Error with AfW 0.3.1a
Status: Alpha
Brought to you by:
zigguratt
|
From: Daniel E. <da...@sy...> - 2003-09-12 13:30:15
|
Thanks for the heads-up, Tim! If you want a quick fix, add these lines to sendmail.py at line 112 (line 111 should start with 'self.log.write'):
except UnboundLocalError:
refused = {}
Retain the leading spaces: the "except" should line up with the "except" on line 108 and the "refused" should be four spaces in from the "except". This fix will be in the next release.
Daniel
-----Original Message-----
From: tj...@re...
To: afw...@li...
Date: 2003-09-12 08:53:18
Subject: [afw-general] Mmmm...Strange Error with AfW 0.3.1a
> In my Pop3client window this morning I see this error..
>
> Traceback (most recent call last):
> File "C:/AfW/sendmail.py", line 143, in ?
> Sendmail().main()
> File "C:/AfW/sendmail.py", line 107, in main
> refused = session.sendmail(sender, recipients, message)
> UnboundLocalError: local variable 'session' referenced before assignment
> Traceback (most recent call last):
> File "C:/AfW/sendmail.py", line 143, in ?
> Sendmail().main()
> File "C:/AfW/sendmail.py", line 107, in main
> refused = session.sendmail(sender, recipients, message)
> UnboundLocalError: local variable 'session' referenced before assignment
> Traceback (most recent call last):
> File "C:/AfW/sendmail.py", line 143, in ?
> Sendmail().main()
> File "C:/AfW/sendmail.py", line 107, in main
> refused = session.sendmail(sender, recipients, message)
> UnboundLocalError: local variable 'session' referenced before assignment
> Traceback (most recent call last):
> File "C:/AfW/sendmail.py", line 143, in ?
> Sendmail().main()
> File "C:/AfW/sendmail.py", line 107, in main
> refused = session.sendmail(sender, recipients, message)
> UnboundLocalError: local variable 'session' referenced before assignment
>
> If you need any other log files...let me know.
>
> -- Tim Jaeger
> company: Remnant Publications
> e-mail: tj...@re...
> bus. phone: 517-279-1304
> fax phone: 517-279-1804
>
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> afw-general mailing list
> afw...@li...
> https://lists.sourceforge.net/lists/listinfo/afw-general
|