summaryrefslogtreecommitdiff
path: root/cmd/getsamplepages/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/getsamplepages/main.go')
-rw-r--r--cmd/getsamplepages/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/getsamplepages/main.go b/cmd/getsamplepages/main.go
index 8e35055..cb32700 100644
--- a/cmd/getsamplepages/main.go
+++ b/cmd/getsamplepages/main.go
@@ -74,7 +74,7 @@ func main() {
err = conn.Download(conn.WIPStorageId(), p+"best", name+"best")
if err != nil {
}
- b, err := ioutil.ReadFile(name+"best")
+ b, err := ioutil.ReadFile(name + "best")
if err != nil {
log.Fatalf("Failed to read file %s\n", name+"best")
}
@@ -85,7 +85,7 @@ func main() {
}
pg := strings.TrimSuffix(lines[0], ".hocr")
- err = os.Remove(name+"best")
+ err = os.Remove(name + "best")
if err != nil {
log.Fatalf("Failed to remove temporary best file for %s", name)
}