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 @@ -91,12 +91,12 @@ def get_revision_date_for_file(
91
91
logging .warning (
92
92
"Unable to read git logs of '%s'."
93
93
" Is git log readable?"
94
- " Option 'ignoring_missing_git ' enabled: so keep building..." % path
94
+ " Option 'fallback_to_build_date ' enabled: so keep building..." % path
95
95
)
96
96
else :
97
97
logging .error (
98
98
"Unable to read git logs of '%s'. "
99
- "To ignore this error, set option 'ignoring_missing_git : true'"
99
+ "To ignore this error, set option 'fallback_to_build_date : true'"
100
100
% path
101
101
)
102
102
raise err
@@ -105,12 +105,12 @@ def get_revision_date_for_file(
105
105
unix_timestamp = None
106
106
logging .warning (
107
107
"Unable to perform command: git log. Is git installed?"
108
- " Option 'ignoring_missing_git ' enabled: so keep building..."
108
+ " Option 'fallback_to_build_date ' enabled: so keep building..."
109
109
)
110
110
else :
111
111
logging .error (
112
112
"Unable to perform command: git log. Is git installed?"
113
- "To ignore this error, set option 'ignoring_missing_git : true'"
113
+ "To ignore this error, set option 'fallback_to_build_date : true'"
114
114
)
115
115
raise err
116
116
You can’t perform that action at this time.
0 commit comments