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')