From: Russ Cox Date: Tue, 30 Aug 2011 13:00:33 +0000 (-0400) Subject: dashboard: yet another utf-8 fix X-Git-Tag: weekly.2011-09-01~19 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=79260e5bfeff142244441978507307a68cee2e96;p=gostls13.git dashboard: yet another utf-8 fix R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4964052 --- diff --git a/misc/dashboard/godashboard/gobuild.py b/misc/dashboard/godashboard/gobuild.py index 7ccbdebb65..ae8d99b3f8 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)