Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: fix deprecation warnings due to invalid escape sequences. #996

Merged
merged 1 commit into from
Aug 3, 2020
Merged
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
8 changes: 4 additions & 4 deletions describe.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def add_param(pname, desc):
parameters.append(pname)

for line in args:
m = re.search("^\s+([a-zA-Z0-9_]+): (.*)", line)
m = re.search(r"^\s+([a-zA-Z0-9_]+): (.*)", line)
if m is None:
desc += line
continue
Expand Down Expand Up @@ -284,7 +284,7 @@ def breadcrumbs(path, root_discovery):
display = p
if i == 0:
display = root_discovery.get("title", display)
crumbs.append('<a href="%s.html">%s</a>' % (prefix + p, display))
crumbs.append('<a href="{}.html">{}</a>'.format(prefix + p, display))
accumulated.append(p)

return " . ".join(crumbs)
Expand Down Expand Up @@ -407,7 +407,7 @@ def document_api(name, version, uri):
version = safe_version(version)

document_collection_recursive(
service, "%s_%s." % (name, version), discovery, discovery
service, "{}_{}.".format(name, version), discovery, discovery
)


Expand All @@ -427,7 +427,7 @@ def document_api_from_discovery_document(uri):
version = safe_version(discovery["version"])

document_collection_recursive(
service, "%s_%s." % (name, version), discovery, discovery
service, "{}_{}.".format(name, version), discovery, discovery
)


Expand Down