Skip to content

Commit

Permalink
refactor: html: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed Feb 15, 2021
1 parent 633c5ad commit 8205283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx/builders/html/__init__.py
Expand Up @@ -1036,7 +1036,7 @@ def hasdoc(name: str) -> bool:

# sort JS/CSS before rendering HTML
ctx['script_files'].sort(key=lambda js: js.priority)
ctx['css_files'].sort(key=lambda js: js.priority)
ctx['css_files'].sort(key=lambda css: css.priority)

try:
output = self.templates.render(templatename, ctx)
Expand Down

0 comments on commit 8205283

Please sign in to comment.