operations: fix typo in log messages
I assume this must be a typo as %T of dir would only ever print "string"
This commit is contained in:
parent
354ea6fff3
commit
6a72cfd6e1
1 changed files with 2 additions and 2 deletions
|
@ -2587,7 +2587,7 @@ func CopyDirMetadata(ctx context.Context, f fs.Fs, dst fs.Directory, dir string,
|
|||
} else {
|
||||
do, ok := dst.(fs.SetMetadataer)
|
||||
if !ok {
|
||||
return nil, fmt.Errorf("internal error: expecting directory %T from %v to have SetMetadata method: %w", dir, f, fs.ErrorNotImplemented)
|
||||
return nil, fmt.Errorf("internal error: expecting directory %s (%T) from %v to have SetMetadata method: %w", logName, dst, f, fs.ErrorNotImplemented)
|
||||
}
|
||||
err = do.SetMetadata(ctx, metadata)
|
||||
newDst = dst
|
||||
|
@ -2639,5 +2639,5 @@ func SetDirModTime(ctx context.Context, f fs.Fs, dst fs.Directory, dir string, m
|
|||
}
|
||||
|
||||
// Something should have worked so return an error
|
||||
return nil, fmt.Errorf("no method to set directory modtime found for %v (%T): %w", f, dir, fs.ErrorNotImplemented)
|
||||
return nil, fmt.Errorf("no method to set directory modtime found for %v (%T): %w", f, dst, fs.ErrorNotImplemented)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue