From: Andrew Gerrand Date: Fri, 16 Dec 2011 03:59:50 +0000 (+1100) Subject: dashboard: improve key panic message X-Git-Tag: weekly.2011-12-22~159 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1338347b9caee12b92d4693600df57683aeec2fc;p=gostls13.git dashboard: improve key panic message R=dsymonds CC=golang-dev https://golang.org/cl/5495060 --- diff --git a/misc/dashboard/app/build/key.go b/misc/dashboard/app/build/key.go index d19902a554..d31bef9da0 100644 --- a/misc/dashboard/app/build/key.go +++ b/misc/dashboard/app/build/key.go @@ -9,7 +9,7 @@ import "appengine" // Delete this init function before deploying to production. func init() { if !appengine.IsDevAppServer() { - panic("please read key.go") + panic("please read misc/dashboard/app/build/key.go") } }