> On Fri, Aug 28, 2009 at 3:00 PM, Marc<[email protected]> wrote: > > Hello, > > > > > > > > I am trying to code an email alert and am running into the following > error: > > > > s = smtplib.SMTP('smtp.marcd.org') > > > > AttributeError: 'module' object has no attribute 'SMTP' > > Your file 'email.py' is hiding the std lib 'email' module and this is > creating a circular import and basically a mess :-) > > Try calling your program something else. > > Kent
That did it - Thanks!! _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
