add support for Beautiful Soup 4
This commit is contained in:
parent
5b1884ead7
commit
5df28b028e
@ -1,6 +1,9 @@
|
|||||||
import StringIO
|
import StringIO
|
||||||
|
|
||||||
from BeautifulSoup import BeautifulSoup
|
try:
|
||||||
|
from BeautifulSoup import BeautifulSoup
|
||||||
|
except ImportError:
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
from djeuscan.tests import SystemTestCase
|
from djeuscan.tests import SystemTestCase
|
||||||
from djeuscan.tests.euscan_factory import PackageFactory, setup_maintainers, \
|
from djeuscan.tests.euscan_factory import PackageFactory, setup_maintainers, \
|
||||||
|
@ -2,7 +2,10 @@ import urllib2
|
|||||||
import re
|
import re
|
||||||
import StringIO
|
import StringIO
|
||||||
|
|
||||||
from BeautifulSoup import BeautifulSoup
|
try:
|
||||||
|
from BeautifulSoup import BeautifulSoup
|
||||||
|
except ImportError:
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
import portage
|
import portage
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user