Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion camelot/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def text_strip(text, strip=""):
return text

stripped = re.sub(
fr"[{''.join(map(re.escape, strip))}]", "", text, flags=re.UNICODE
rf"[{''.join(map(re.escape, strip))}]", "", text, flags=re.UNICODE
)
return stripped

Expand Down
12 changes: 6 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
master_doc = "index"

# General information about the project.
project = u"Camelot"
copyright = u"2021, Camelot Developers"
author = u"Vinayak Mehta"
project = "Camelot"
copyright = "2021, Camelot Developers"
author = "Vinayak Mehta"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -283,7 +283,7 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, "Camelot.tex", u"Camelot Documentation", u"Vinayak Mehta", "manual"),
(master_doc, "Camelot.tex", "Camelot Documentation", "Vinayak Mehta", "manual"),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -323,7 +323,7 @@

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [(master_doc, "Camelot", u"Camelot Documentation", [author], 1)]
man_pages = [(master_doc, "Camelot", "Camelot Documentation", [author], 1)]

# If true, show URL addresses after external links.
#
Expand All @@ -339,7 +339,7 @@
(
master_doc,
"Camelot",
u"Camelot Documentation",
"Camelot Documentation",
author,
"Camelot",
"One line description of project.",
Expand Down