aboutsummaryrefslogtreecommitdiffstats
path: root/drive/upload_sync.go
diff options
context:
space:
mode:
authorPetter Rasmussen2016-02-02 23:07:35 +0100
committerPetter Rasmussen2016-02-02 23:07:35 +0100
commit1a83dbc57e1bd7481f6c716e7705a9712a726008 (patch)
tree83a4fe96a957e5e2034cd245022a8406c267b3ff /drive/upload_sync.go
parent926a805a153bd99e113543b0a6d43807eb3e49f3 (diff)
downloadgdrive-1a83dbc57e1bd7481f6c716e7705a9712a726008.tar.bz2
Remove 'aborting' suffix
Diffstat (limited to 'drive/upload_sync.go')
-rw-r--r--drive/upload_sync.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/drive/upload_sync.go b/drive/upload_sync.go
index 66e1456..d1c155d 100644
--- a/drive/upload_sync.go
+++ b/drive/upload_sync.go
@@ -129,7 +129,7 @@ func (self *Drive) createMissingRemoteDirs(files *syncFiles, args UploadSyncArgs
parentPath := parentFilePath(lf.relPath)
parent, ok := files.findRemoteByPath(parentPath)
if !ok {
- return nil, fmt.Errorf("Could not find remote directory with path '%s', aborting...", parentPath)
+ return nil, fmt.Errorf("Could not find remote directory with path '%s'", parentPath)
}
dstFile := &drive.File{
@@ -167,7 +167,7 @@ func (self *Drive) uploadMissingFiles(files *syncFiles, args UploadSyncArgs) err
parentPath := parentFilePath(lf.relPath)
parent, ok := files.findRemoteByPath(parentPath)
if !ok {
- return fmt.Errorf("Could not find remote directory with path '%s', aborting...", parentPath)
+ return fmt.Errorf("Could not find remote directory with path '%s'", parentPath)
}
fmt.Fprintf(args.Out, "[%04d/%04d] Uploading %s -> %s\n", i + 1, missingCount, lf.absPath, filepath.Join(files.root.file.Name, lf.relPath))