Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Update default_conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Apr 24, 2020
1 parent 57ae01d commit 19c51d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyquickhelper/helpgen/default_conf.py
Expand Up @@ -406,7 +406,8 @@ def set_sphinx_variables(fileconf, module_name, author, year, theme, theme_path,
modindex_common_prefix = [project_var_name + ".", ]
project = (project_var_name + ' documentation') if title is None else title
copyright = str(year) + ", " + author
release = version if len(version.split('.')) < 3 else "%s.%s" (version, first_line)
release = (version if len(version.split('.')) < 3
else "%s.%s" % (version, first_line))
html_title = ("%s %s" % (project_var_name, release)
) if title is None else title
htmlhelp_basename = '%s_doc' % project_var_name
Expand Down

0 comments on commit 19c51d9

Please sign in to comment.