]> Cypherpunks repositories - gostls13.git/commitdiff
dashboard: improve key panic message
authorAndrew Gerrand <adg@golang.org>
Fri, 16 Dec 2011 03:59:50 +0000 (14:59 +1100)
committerAndrew Gerrand <adg@golang.org>
Fri, 16 Dec 2011 03:59:50 +0000 (14:59 +1100)
R=dsymonds
CC=golang-dev
https://golang.org/cl/5495060

misc/dashboard/app/build/key.go

index d19902a554a618fa7e1bc507717a683ce6dd9607..d31bef9da0bb55b00d51554655ede7a5428de748 100644 (file)
@@ -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")
        }
 }