We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mustache.go can be updated:
$ git diff diff --git a/mustache.go b/mustache.go index 146099a..18b5f7c 100644 --- a/mustache.go +++ b/mustache.go @@ -156,7 +156,7 @@ func (tmpl *template) parseSection(section *sectionElement) os.Error { tmpl.elems.Push(partial) case '=': if tag[len(tag)-1] != '=' { - panicln("Invalid meta tag") + panic("Invalid meta tag") } tag = strings.TrimSpace(tag[1 : len(tag)-1]) newtags := strings.Split(tag, " ", 0) @@ -227,7 +227,7 @@ func (tmpl *template) parse() os.Error { tmpl.elems.Push(partial) case '=': if tag[len(tag)-1] != '=' { - panicln("Invalid meta tag") + panic("Invalid meta tag") } tag = strings.TrimSpace(tag[1 : len(tag)-1]) newtags := strings.Split(tag, " ", 0)
The text was updated successfully, but these errors were encountered:
Thanks, just pushed a fix for this.
Sorry, something went wrong.
Merge pull request hoisie#3 from jabley/feature/other-go-versions
b4d73af
Build on go 1.2 and 1.4 as well
No branches or pull requests
mustache.go can be updated:
The text was updated successfully, but these errors were encountered: