From 79260e5bfeff142244441978507307a68cee2e96 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 30 Aug 2011 09:00:33 -0400 Subject: [PATCH] dashboard: yet another utf-8 fix R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4964052 --- misc/dashboard/godashboard/gobuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dashboard/godashboard/gobuild.py b/misc/dashboard/godashboard/gobuild.py index 7ccbdebb655..ae8d99b3f85 100644 --- a/misc/dashboard/godashboard/gobuild.py +++ b/misc/dashboard/godashboard/gobuild.py @@ -279,7 +279,7 @@ class CommitHandler(DashboardHandler): n.parentnode = parenthash n.user = user n.date = date - n.desc = desc.encode('utf8') + n.desc = desc n.put() db.run_in_transaction(add_commit) n = nodeByHash(node)