Skip to content

Commit

Permalink
Update driver.go (#454)
Browse files Browse the repository at this point in the history
* Update driver.go

* addressing comments
  • Loading branch information
olicuzo authored Oct 17, 2020
1 parent f18b165 commit 91deba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func Open(url string) (Driver, error) {
d, ok := drivers[u.Scheme]
driversMu.RUnlock()
if !ok {
return nil, fmt.Errorf("source driver: unknown driver %v (forgotten import?)", u.Scheme)
return nil, fmt.Errorf("source driver: unknown driver '%s' (forgotten import?)", u.Scheme)
}

return d.Open(url)
Expand Down

0 comments on commit 91deba8

Please sign in to comment.