diff pylons_app/controllers/summary.py @ 428:dee0e7eb0370

removed decodes, thus it should be implemented on vcs side fixed bug on annotation links in helpers
author *** failed to import extension hggit: No module named hggit
date Thu, 26 Aug 2010 22:09:55 +0200
parents cbfb853a0a4c
children 01cf2c9bd7ee
line wrap: on
line diff
--- a/pylons_app/controllers/summary.py	Thu Aug 26 17:29:26 2010 +0200
+++ b/pylons_app/controllers/summary.py	Thu Aug 26 22:09:55 2010 +0200
@@ -124,9 +124,9 @@
         tmpl1 = u"""{label:"%s",data:%s,schema:["commits"]},"""
         for author in aggregate:
             
-            d += tmpl0 % (author.decode('utf8'),
+            d += tmpl0 % (author,
                           tmpl1 \
-                          % (author.decode('utf8'),
+                          % (author,
                         [{"time":x,
                           "commits":aggregate[author][x]['commits'],
                           "added":aggregate[author][x]['added'],