Skip to content
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
2 changes: 1 addition & 1 deletion src/mkdocs_git_revision_date_localized_plugin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def on_page_markdown(self, markdown: str, page: Page, config: config_options.Con
if first_revision_timestamp > last_revision_timestamp:
# See also https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/issues/111
msg = "First revision timestamp is older than last revision timestamp for page %s. " % page.file.src_path
msg += "This can be due to a quick in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration."
msg += "This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration."
logging.warning(msg)
first_revision_hash, first_revision_timestamp = last_revision_hash, last_revision_timestamp

Expand Down
Loading