We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb74aec commit 2d1e607Copy full SHA for 2d1e607
sphinx/environment/__init__.py
@@ -751,7 +751,7 @@ def _last_modified_time(filename: str | os.PathLike[str]) -> int:
751
def _format_modified_time(timestamp: int) -> str:
752
"""Return an RFC 3339 formatted string representing the given timestamp."""
753
seconds, fraction = divmod(timestamp, 10**6)
754
- return time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(seconds)) + f'.{fraction//1_000}'
+ return time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(seconds)) + f'.{fraction // 1_000}'
755
756
757
def _traverse_toctree(
0 commit comments