1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-15 15:53:26 +00:00

Fix string format derp.

Goimports is weird. It changed something, but i have no idea what.
This commit is contained in:
TheBestPessimist
2017-10-01 12:33:32 +03:00
parent bd39302eee
commit a5d3340837

View File

@@ -329,7 +329,7 @@ func CreateGCDStorage(tokenFile string, storagePath string, threads int) (storag
return nil, err
}
} else if !isDir {
return nil, fmt.Errorf("%s/%s is not a directory", storagePath+"/"+dir)
return nil, fmt.Errorf("%s/%s is not a directory", storagePath, dir)
} else {
storage.idCache[dir] = dirID
}