diff options
Diffstat (limited to 'docs/xsl/fixxref.py.in')
-rw-r--r-- | docs/xsl/fixxref.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/xsl/fixxref.py.in b/docs/xsl/fixxref.py.in index 497160e..b381183 100644 --- a/docs/xsl/fixxref.py.in +++ b/docs/xsl/fixxref.py.in @@ -13,7 +13,7 @@ anchor_pat = re.compile(r'''^\s*<ANCHOR\s+id\s*=\s*"([^"]*)"\s+ href\s*=\s*"([^"]*)"\s*>''', re.MULTILINE | re.VERBOSE) link_pat = re.compile(r'''<PYGTKDOCLINK\s+HREF="([^"]*)"\s*>(.*?) - </PYGTKDOCLINK\s*>''', re.VERBOSE) + </PYGTKDOCLINK\s*>''', re.DOTALL | re.VERBOSE) def scan_index_dir(idir): for root, dirs, files in os.walk(idir): if 'index.sgml' in files: |