Skip to content

Commit

Permalink
chore(docs[conf]): Convert to f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Jul 22, 2023
1 parent 9675bb3 commit 019c1cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@
rediraffe_redirects = "redirects.txt"
rediraffe_branch = "master~1"

htmlhelp_basename = "%sdoc" % about["__title__"]
htmlhelp_basename = f"{about['__title__']}doc"

latex_documents = [
(
"index",
"{}.tex".format(about["__package_name__"]),
"{} Documentation".format(about["__title__"]),
f"{about['__package_name__']}.tex",
f"{about['__title__']} Documentation",
about["__author__"],
"manual",
)
Expand All @@ -148,7 +148,7 @@
(
"index",
about["__package_name__"],
"{} Documentation".format(about["__title__"]),
f"{about['__title__']} Documentation",
about["__author__"],
1,
)
Expand All @@ -157,8 +157,8 @@
texinfo_documents = [
(
"index",
"{}".format(about["__package_name__"]),
"{} Documentation".format(about["__title__"]),
about["__package_name__"],
f"{about['__title__']} Documentation",
about["__author__"],
about["__package_name__"],
about["__description__"],
Expand Down

0 comments on commit 019c1cd

Please sign in to comment.