drive: fix stray %!(EXTRA) in unexportable google document log message

(cherry picked from commit 42f7eda4f1)
This commit is contained in:
Nick Craig-Wood
2026-07-07 11:10:52 +01:00
parent c9ff593a7f
commit b440d18897

View File

@@ -1688,7 +1688,7 @@ func (f *Fs) newObjectWithExportInfo(
if !isDocument {
fs.Debugf(remote, "Ignoring unknown document type %q", info.MimeType)
gdocsWarnOnce.Do(func() {
fs.Logf(remote, "Skipping unexportable google documents. Use --drive-show-all-gdocs to include them in server side copy and move", info.MimeType)
fs.Logf(remote, "Skipping unexportable google document %q. Use --drive-show-all-gdocs to include them in server side copy and move", info.MimeType)
})
return nil, fs.ErrorObjectNotFound
}