View Single Post
Old 05-20-2017, 10:11 AM   #4
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,674
Karma: 205039118
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by samirahmed007 View Post
Please suggest
Either configure Sigil's Plugin manager to use an external Python interpreter with the BeautifulSoup module installed, or convince the plugin author to modify the plugin to use Sigil's own sigil_bs4 module if it's present (sigil_bs4 has been available to Sigil plugins since v0.8.900).

The easiest "fix" would be to change line 4 of plugin.py from:
Code:
from bs4 import BeautifulSoup
to:
Code:
try:
    from sigil_bs4 import BeautifulSoup
except:
    from bs4 import BeautifulSoup

Last edited by DiapDealer; 05-20-2017 at 10:21 AM.
DiapDealer is offline   Reply With Quote