From ab4c250c14cf2361041d57e9b009385f0debf74f Mon Sep 17 00:00:00 2001 From: Andrea Gavana Date: Sun, 1 Apr 2012 21:10:53 +0000 Subject: [PATCH] Phoenix: Minor tweaks to postprocess.py git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71073 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- sphinxtools/postprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sphinxtools/postprocess.py b/sphinxtools/postprocess.py index d47ed8ff..1489cf59 100644 --- a/sphinxtools/postprocess.py +++ b/sphinxtools/postprocess.py @@ -150,6 +150,8 @@ def BuildEnumsAndMethods(sphinxDir): text = text.replace('**( `', '** ( `') # Replace EmptyString stuff text = text.replace('EmptyString', "''") + # Replace ArrayString stuff... + text = text.replace('ArrayString', 'list of strings') if text != orig_text: fid = open(input, 'wt')