Skip to content

Commit

Permalink
Pacify the linter gods
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Oct 4, 2018
1 parent 7c9bdab commit 365e938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ddevapp/ddevapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ func (app *DdevApp) GetWebContainerDirectURL() string {
if err != nil {
util.Warning("Unable to get Docker IP: %v", err)
}
port, err := app.GetWebContainerPublicPort()
port, _ := app.GetWebContainerPublicPort()
return fmt.Sprintf("http://%s:%d", dockerIP, port)
}

Expand Down

0 comments on commit 365e938

Please sign in to comment.