Skip to content

Commit

Permalink
Minor logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaprasadmg committed Mar 6, 2018
1 parent 7c49e83 commit 944f391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/investor.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func LoadInvestors(files []string) []Investor {

if err == io.EOF {
break
} else {
} else if err != nil {
PanicOnError(err)
}

Expand Down

0 comments on commit 944f391

Please sign in to comment.