From 845dbe03bee981bcc5d24ef06ca868042968aa4c Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Fri, 18 Feb 2011 12:21:18 -0500 Subject: Made Unicode, Dammit more PEP-8 compliant. --- tests/test_soup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_soup.py b/tests/test_soup.py index 4fb2142..7414403 100644 --- a/tests/test_soup.py +++ b/tests/test_soup.py @@ -27,7 +27,7 @@ class TestUnicodeDammit(unittest.TestCase): def test_smart_quotes_to_html_entities(self): markup = "\x91\x92\x93\x94" - dammit = UnicodeDammit(markup, smartQuotesTo="html") + dammit = UnicodeDammit(markup, smart_quotes_to="html") self.assertEquals( dammit.unicode, "‘’“”") -- cgit v1.2.3