* looking for arch@arch.thinkmo.de--2003-archives/moin--main--1.5--patch-123 to compare with
* comparing to arch@arch.thinkmo.de--2003-archives/moin--main--1.5--patch-123
M  MoinMoin/stats/hitcounts.py

* modified files

--- orig/MoinMoin/stats/hitcounts.py
+++ mod/MoinMoin/stats/hitcounts.py
@@ -86,8 +86,11 @@
     
             if event[0] <=  cache_date:
                 break
-            # XXX Bug: event[2].get('pagename') -> u'Aktuelle%C4nderungen' 8(
+            
+            # The log returns utf-8 ??!
             eventpage = event[2].get('pagename','')
+            eventpage = unicode(eventpage, config.charset)
+            
             if filterpage and eventpage != filterpage:
                 continue
             time_tuple = request.user.getTime(wikiutil.version2timestamp(event[0]))



