summaryrefslogtreecommitdiff
path: root/cmd/bookpipeline/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/bookpipeline/main.go')
-rw-r--r--cmd/bookpipeline/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bookpipeline/main.go b/cmd/bookpipeline/main.go
index f7c2ae9..6687329 100644
--- a/cmd/bookpipeline/main.go
+++ b/cmd/bookpipeline/main.go
@@ -373,7 +373,7 @@ func analyse(conn Pipeliner) func(chan string, chan string, chan error, *log.Log
}
defer f.Close()
err = bookpipeline.Graph(bestconfs, filepath.Base(savedir), f)
- if err != nil {
+ if err != nil && err.Error() != "Not enough valid confidences" {
close(up)
errc <- errors.New(fmt.Sprintf("Error rendering graph: %s", err))
return