X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6f401080887e8a60e83ee972c871a478d0889c3e..d63f7562cf9ccad9c430d4c2e2a8bd416a016d89:/wxPython/docs/bin/simplify.py

diff --git a/wxPython/docs/bin/simplify.py b/wxPython/docs/bin/simplify.py
index 152642e7b6..4e58799509 100755
--- a/wxPython/docs/bin/simplify.py
+++ b/wxPython/docs/bin/simplify.py
@@ -66,7 +66,7 @@ def processModule(newDocNode, modulename):
 
     # make a module element
     name = getAttr(topNode, "module")
-    assert name == modulename # sanity check    
+    ##assert name == modulename # sanity check    
 
     moduleNode = libxml2.newNode("module")
     moduleNode.setProp("name", name)    
@@ -246,13 +246,10 @@ def doDocStrings(parentNode, srcNode):
     
     autodoc = getAttr(srcNode, "python_autodoc")
     docstr  = getAttr(srcNode, "feature_docstring")
-    refdoc  = getAttr(srcNode, "feature_refdoc")
     if autodoc:
         parentNode.addChild(makeDocElement("autodoc", autodoc))
     if docstr:
         parentNode.addChild(makeDocElement("docstring", docstr))
-    if refdoc:
-        parentNode.addChild(makeDocElement("refdoc", refdoc))