remove redunant part of error message

Change-Id: I87958658d5af5f4b52cdadbf0b9d0b3748bd1738
This commit is contained in:
Brad Fitzpatrick 2014-08-04 22:50:56 -07:00
parent a01175d45c
commit acf2eeb2d4
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ func Main(up chan<- struct{}, down <-chan struct{}) {
config, isNewConfig, err := loadConfig(*flagConfigFile)
if err != nil {
exitf("Error loading config file %q: %v", *flagConfigFile, err)
exitf("Error loading config file: %v", err)
}
ws := webserver.New()