Skip to content

Commit

Permalink
Fix linter errors in ignored file
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfonso Acosta committed Dec 22, 2016
1 parent bf2432d commit ab28a0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions prog/static.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import (
"github.com/weaveworks/scope/prog/staticui"
)

func GetFS(use_external bool) http.FileSystem {
if use_external {
// GetFS obtains the UI code
func GetFS(useExternal bool) http.FileSystem {
if useExternal {
return externalui.FS(false)
} else {
return staticui.FS(false)
Expand Down

0 comments on commit ab28a0b

Please sign in to comment.