Skip to content

Commit d311a14

Browse files
committed
Man page: use package name, not project title
1 parent 3ab6969 commit d311a14

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% if cookiecutter.include_executable == "y" -%}
22
build/man/{{ cookiecutter.executable_name }}.1
33
{%- else -%}
4-
build/man/{{ cookiecutter.project_title | lower }}.3
4+
build/man/{{ cookiecutter.package_name }}.3
55
{%- endif %}

{{ cookiecutter.project_slug }}/doc/sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
{% if cookiecutter.include_executable == "y" -%}
3535
executable_name,
3636
{%- else -%}
37-
'{{ cookiecutter.project_title | lower }}',
37+
'{{ cookiecutter.package_name }}',
3838
{%- endif %}
3939
description,
4040
[author],

{{ cookiecutter.project_slug }}/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ man.cmd = "man build/man/
8888
{%- if cookiecutter.include_executable == "y" -%}
8989
{{ cookiecutter.executable_name }}.1
9090
{%- else -%}
91-
{{ cookiecutter.project_title | lower }}.3
91+
{{ cookiecutter.package_name }}.3
9292
{%- endif -%}
9393
"
9494
man.help = "Open manual page"

0 commit comments

Comments
 (0)