This commit is contained in:
Thomas Boerger 2016-11-15 10:36:37 +01:00
Родитель eb2f354061
Коммит ece5335f5d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5A388F55283960B6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -87,7 +87,7 @@ func parseMaintainerToml(data string) (*Maintainer, error) {
return nil, err
}
if m.People == nil {
return nil, fmt.Errorf("Invalid Toml format. Missing people section.")
return nil, fmt.Errorf("Invalid TOML format, missing people section")
}
// if the person is defined in the file, but the Login field is
// empty, we can use the map key as the Login value. This is mainly
@ -125,7 +125,7 @@ func parseMaintainerText(data string) (*Maintainer, error) {
person = parseLoginEmail(item)
}
if person == nil {
return nil, fmt.Errorf("Invalid file format.")
return nil, fmt.Errorf("Invalid file format")
}
m.People[person.Login] = person