|
ImportError: No module named mime.text
2013年6月21日woyoo1,433 浏览数发表评论阅读评论
生成环境的一个python脚本执行报错,老版本python中MIMEText 写法不对
[color=#999999 !important]Shell
1
2
3
4
5
6
7
8
9
10
11
| [color=#f1f2f3 !important][[color=#678cb1 !important]root[color=#f1f2f3 !important]@[color=#678cb1 !important]woyoo[color=#ffcd22 !important]:[color=#ffcd22 !important]~[color=#f1f2f3 !important]][color=#66747b !important]# /usr/bin/python /data/logs/cut_nginx_log.py
[color=#95c763 !important]Traceback[color=#f1f2f3 !important]([color=#95c763 !important]most [color=#95c763 !important]recent [color=#95c763 !important]call [color=#678cb1 !important]last[color=#f1f2f3 !important])[color=#ffcd22 !important]:
[color=#ffcd22 !important] [color=#a082bd !important]File[color=#ec7600 !important]"/data/logs/cut_nginx_log.py"[color=#f1f2f3 !important],[color=#678cb1 !important]line[color=#99daf9 !important]17[color=#f1f2f3 !important],[color=#a082bd !important]in[color=#f1f2f3 !important]?
[color=#ffcd22 !important] [color=#95c763 !important]from [color=#678cb1 !important]email[color=#95c763 !important].mime[color=#95c763 !important].text[color=#95c763 !important]import [color=#95c763 !important]MIMEText
[color=#678cb1 !important]ImportError[color=#ffcd22 !important]:[color=#95c763 !important]No [color=#95c763 !important]module [color=#95c763 !important]named [color=#678cb1 !important]mime[color=#95c763 !important].text
[color=#f1f2f3 !important][[color=#678cb1 !important]root[color=#f1f2f3 !important]@[color=#678cb1 !important]woyoo[color=#ffcd22 !important]:[color=#ffcd22 !important]~[color=#f1f2f3 !important]][color=#66747b !important]# python
[color=#678cb1 !important]Python[color=#99daf9 !important]2.4.3[color=#f1f2f3 !important]([color=#66747b !important]#1, Jan 9 2013, 06:47:03)
[color=#f1f2f3 !important][[color=#678cb1 !important]GCC[color=#99daf9 !important]4.1.2[color=#99daf9 !important]20080704[color=#f1f2f3 !important]([color=#95c763 !important]Red [color=#678cb1 !important]Hat[color=#99daf9 !important]4.1.2[color=#ffcd22 !important]-[color=#99daf9 !important]54[color=#f1f2f3 !important])[color=#f1f2f3 !important]][color=#95c763 !important]on [color=#95c763 !important]linux2
[color=#a082bd !important]Type[color=#ec7600 !important]"help"[color=#f1f2f3 !important],[color=#ec7600 !important]"copyright"[color=#f1f2f3 !important],[color=#ec7600 !important]"credits"[color=#a082bd !important]or[color=#ec7600 !important]"license"[color=#a082bd !important]for[color=#a082bd !important]more[color=#678cb1 !important]information[color=#f1f2f3 !important].
[color=#ffcd22 !important]>>>
|
修改为下面这样写法ok
[color=#999999 !important]Shell
1
2
| [color=#95c763 !important]from [color=#678cb1 !important]email[color=#95c763 !important].MIMEText[color=#95c763 !important]import [color=#95c763 !important]MIMEText
[color=#95c763 !important]from [color=#678cb1 !important]email[color=#95c763 !important].Header[color=#95c763 !important]import [color=#678cb1 !important]Header
|
|
|
|