forked from TrueCloudLab/restic
sftp: Use path instead of filepath
This commit is contained in:
parent
8395b53400
commit
e046a2a6da
1 changed files with 1 additions and 2 deletions
|
@ -7,7 +7,6 @@ import (
|
|||
"os"
|
||||
"os/exec"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"restic"
|
||||
"strings"
|
||||
"time"
|
||||
|
@ -416,7 +415,7 @@ func (r *SFTP) List(t restic.FileType, done <-chan struct{}) <-chan string {
|
|||
}
|
||||
|
||||
select {
|
||||
case ch <- filepath.Base(walker.Path()):
|
||||
case ch <- path.Base(walker.Path()):
|
||||
case <-done:
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue