File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
mkdocs_git_revision_date_localized_plugin Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,12 @@ def get_revision_date_for_file(
92
92
logging .warning (
93
93
"Unable to read git logs of '%s'."
94
94
" Is git log readable?"
95
- " Option 'ignoring_missing_git ' enabled: so keep building..." % path
95
+ " Option 'fallback_to_build_date ' enabled: so keep building..." % path
96
96
)
97
97
else :
98
98
logging .error (
99
99
"Unable to read git logs of '%s'. "
100
- "To ignore this error, set option 'ignoring_missing_git : true'"
100
+ "To ignore this error, set option 'fallback_to_build_date : true'"
101
101
% path
102
102
)
103
103
raise err
@@ -106,12 +106,12 @@ def get_revision_date_for_file(
106
106
unix_timestamp = None
107
107
logging .warning (
108
108
"Unable to perform command: git log. Is git installed?"
109
- " Option 'ignoring_missing_git ' enabled: so keep building..."
109
+ " Option 'fallback_to_build_date ' enabled: so keep building..."
110
110
)
111
111
else :
112
112
logging .error (
113
113
"Unable to perform command: git log. Is git installed?"
114
- "To ignore this error, set option 'ignoring_missing_git : true'"
114
+ "To ignore this error, set option 'fallback_to_build_date : true'"
115
115
)
116
116
raise err
117
117
You can’t perform that action at this time.
0 commit comments