diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-07-28 21:58:51 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-07-28 21:58:51 +0100 |
commit | c13d416d9891803401b02ccead5c824dc82cb1d7 (patch) | |
tree | fe9697f34a35955ac0e6da05fa79a57d916e9f9e /pkg/datamaps/db.go | |
parent | 0d167f86229e1acdec10e28facddd514ee8dfcb3 (diff) |
chasing golint
Diffstat (limited to 'pkg/datamaps/db.go')
-rw-r--r-- | pkg/datamaps/db.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/datamaps/db.go b/pkg/datamaps/db.go index 0e44c3e..d0f957e 100644 --- a/pkg/datamaps/db.go +++ b/pkg/datamaps/db.go @@ -231,7 +231,7 @@ func importXLSXtoDB(dmName string, returnName string, file string, db *sql.DB) e var dmlID *int if err := dmlIDRow.Scan(&dmlID); err != nil { - err := fmt.Errorf("cannot find a datamap_line row for %s and %s: %s.\n", sheetName, cellRef, err) + err := fmt.Errorf("cannot find a datamap_line row for %s and %s: %s", sheetName, cellRef, err) log.Println(err.Error()) } |