diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tools/undoc_symbols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/undoc_symbols.py b/Doc/tools/undoc_symbols.py index 3528106..d603a36 100644 --- a/Doc/tools/undoc_symbols.py +++ b/Doc/tools/undoc_symbols.py @@ -77,7 +77,7 @@ def print_undoc_symbols(prefix, docdir, incdir): incfiles = os.path.join(incdir, INCLUDEPATTERN) - fp = os.popen("ctags -IDL_IMPORT --c-types=%s -f - %s" + fp = os.popen("ctags -IPyAPI_FUNC --c-types=%s -f - %s" % (TAG_KINDS, incfiles)) dict = findnames(fp, prefix) names = dict.keys() |