Skip to content

Commit

Permalink
docs: set html_last_updated_fmt to format string (#2937)
Browse files Browse the repository at this point in the history
  • Loading branch information
paravoid committed Mar 12, 2023
1 parent 177a227 commit 6be22df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -3,7 +3,7 @@
import re
import subprocess
import sys
from datetime import date, datetime
from datetime import date
from importlib.machinery import SourceFileLoader
from pathlib import Path
from subprocess import check_output
Expand All @@ -26,7 +26,7 @@
master_doc, source_suffix = "index", ".rst"

html_theme = "furo"
html_title, html_last_updated_fmt = "tox", datetime.now().isoformat()
html_title, html_last_updated_fmt = "tox", "%Y-%m-%dT%H:%M:%S"
pygments_style, pygments_dark_style = "sphinx", "monokai"
html_static_path, html_css_files = ["_static"], ["custom.css"]
html_logo, html_favicon = "_static/img/tox.svg", "_static/img/toxfavi.ico"
Expand Down

0 comments on commit 6be22df

Please sign in to comment.