Skip to content

Commit

Permalink
Update error message if initial dish connection is not usable.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwillcocks committed May 19, 2021
1 parent afbff8b commit e18cd01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/exporter/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func New(address string) (*Exporter, error) {
Request: &device.Request_GetDeviceInfo{},
})
if err != nil {
return nil, fmt.Errorf("could not get dish id: %s", err.Error())
return nil, fmt.Errorf("could not collect inital information from dish: %s", err.Error())
}

return &Exporter{
Expand Down

0 comments on commit e18cd01

Please # to comment.