justzx2011 / openyoudao

openyoudao is a youdao client for linux.有道字典在Linux下的客户端,目前程序已经进入aur源,并支持Debian/Ubuntu fedora/centos 等常用发行版linux
http://openyoudao.org
MIT License
267 stars 87 forks source link

BeautifulSoup4 要修改fusionyoudao.py #32

Closed tlze closed 6 years ago

tlze commented 10 years ago

sed -i '1s/from BeautifulSoup/from bs4/' fusionyoudao.py

我用gentoo安装后找不到模块,搜索后问题解决。 BeautifulSoup4要修改fusionyoudao.py文件第一行第一个BeautifulSoup为bs4

biergaizi commented 10 years ago

谁去发个 Patch?应该改成:

try:
    from BeautifulSoup import BeautifulSoup
except ImportError:
    from bs4 import BeautifulSoup
justzx2011 commented 10 years ago

多谢反馈,Patch会添加到下一版本