From b440d18897a67f7dbd56631e1918923962e9385f Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 7 Jul 2026 11:10:52 +0100 Subject: [PATCH] drive: fix stray %!(EXTRA) in unexportable google document log message (cherry picked from commit 42f7eda4f1e4a4413a43fa393018e26eb5858a6a) --- backend/drive/drive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/drive/drive.go b/backend/drive/drive.go index 5d844604e..ca04837fa 100644 --- a/backend/drive/drive.go +++ b/backend/drive/drive.go @@ -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 }