Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to run this piece of code that yielded an error:

#!/usr/bin/python

import smtplib
msg = 'Hello world.'

server = smtplib.SMTP('smtp.gmail.com',587) #port 465 or 587
server.ehlo()
server.starttls()
server.ehlo()
server.login('me@gmail.com','pass')
server.sendmail('me@gmail.com','someoneelse@gmail.com',msg)
server.close()

This is the error:

Traceback (most recent call last):
  File "sendmail2.py", line 2, in <module>
    import smtplib
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/smtplib.py", line 163, in <module>
    import ssl
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ssl.py", line 58, in <module>
    import textwrap
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/textwrap.py", line 32, in <module>
    class TextWrapper:
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/textwrap.py", line 74, in TextWrapper
    whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace))
AttributeError: 'module' object has no attribute 'maketrans

I wonder what the problem is? It seems to me that the import if smtplib is broken but why?

share|improve this question
2  
Do you have a string.py[c] in the current directory? – Avaris May 10 '12 at 2:05
There is a string.py in the directory! – alkopop79 May 10 '12 at 2:14
2  
Remove/Rename the string.py (and .pyc also). It is shadowing the built-in string module. – Avaris May 10 '12 at 2:35
I still cannot launch the script form the same folder. Why is that? How can I avoid this? – alkopop79 May 10 '12 at 12:21
What is the error? – Avaris May 11 '12 at 23:58
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.