mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Make error message when encountering unrecognized file extensions more helpful
This commit is contained in:
parent
ea8d0981d5
commit
0becad727a
1 changed files with 1 additions and 1 deletions
|
@ -527,7 +527,7 @@ func (page *Page) Convert() error {
|
|||
case "html":
|
||||
page.Content = bytesToHTML(page.rawContent)
|
||||
default:
|
||||
return errors.New("Error converting unsupported file type " + markupType)
|
||||
return fmt.Errorf("Error converting unsupported file type '%s' for page '%s'", markupType, page.FileName)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue