diff options
-rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index bcda8fc9..6c0097b8 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -245,7 +245,7 @@ scripts = os.listdir(bin_path) # as 'filter-env', but due to python namespace contraints, it uses a '_' # instead. generated_man_pages = [ - ('pkgcore.scripts.' + s.replace('-', '_'), s) for s in scripts + ('%s.scripts.' % (project,) + s.replace('-', '_'), s) for s in scripts ] # One entry per manual page. List of tuples |