瀏覽代碼

Fixed Python 3.4 test failure.

Tim Graham 11 年之前
父節點
當前提交
45ef4baf5c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      django/utils/html_parser.py

+ 2 - 2
django/utils/html_parser.py

@@ -20,8 +20,8 @@ if not use_workaround:
             it at call time because Python 2.7 does not have the keyword
             argument.
             """
-            def __init__(self, convert_charrefs=False):
-                _html_parser.HTMLParser.__init__(self, convert_charrefs=convert_charrefs)
+            def __init__(self, convert_charrefs=False, **kwargs):
+                _html_parser.HTMLParser.__init__(self, convert_charrefs=convert_charrefs, **kwargs)
     else:
         HTMLParser = _html_parser.HTMLParser
 else: