This addon is broken on win32 due to case sensitivity issues (seems backwards, but true) on importing BeautifulSoup. See attached patch for fix.
Please change this in your repo and bump version, then we'll pull the fix. Cory diff --git a/addon.py b/addon.py index 562b92c..feb949b 100755 --- a/addon.py +++ b/addon.py @@ -14,7 +14,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import re from urllib import unquote_plus -from beautifulsoup import BeautifulSoup as BS, SoupStrainer as SS +from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS from resources.lib.xbmcvideoplugin import (XBMCVideoPlugin, DialogProgress, urlread, async_urlread, parse_qs) ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ Xbmc-addons mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/xbmc-addons
