From dc682f38b36294d9b102aed3be506d46f8d37b59 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Sun, 27 Feb 2011 16:51:56 -0500 Subject: Renamed the beautifulsoup module to bs4 to save typing. --- tests/test_soup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_soup.py') diff --git a/tests/test_soup.py b/tests/test_soup.py index 690db39..d283b8a 100644 --- a/tests/test_soup.py +++ b/tests/test_soup.py @@ -2,9 +2,9 @@ """Tests of Beautiful Soup as a whole.""" import unittest -from beautifulsoup.element import SoupStrainer -from beautifulsoup.dammit import EntitySubstitution, UnicodeDammit -from beautifulsoup.testing import SoupTest +from bs4.element import SoupStrainer +from bs4.dammit import EntitySubstitution, UnicodeDammit +from bs4.testing import SoupTest class TestSelectiveParsing(SoupTest): -- cgit v1.2.3