This commit is contained in:
volpino
2012-06-14 10:21:37 +02:00
2 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,10 @@ import urllib2
import re
import StringIO
from BeautifulSoup import BeautifulSoup
try:
from BeautifulSoup import BeautifulSoup
except ImportError:
from bs4 import BeautifulSoup
import portage