diff mercurial/hgweb/server.py @ 14764:a7d5816087a9 stable

classes: fix class style problems found by b071cd58af50 This makes test-wireprotocol.py work on Python 2.4
author Thomas Arendsen Hein <thomas@intevation.de>
date Wed, 29 Jun 2011 15:00:00 +0200
parents ce99d887585f
children 16e5271b216f
line wrap: on
line diff
--- a/mercurial/hgweb/server.py	Wed Jun 29 13:45:51 2011 +0200
+++ b/mercurial/hgweb/server.py	Wed Jun 29 15:00:00 2011 +0200
@@ -251,7 +251,7 @@
     if hasattr(os, "fork"):
         _mixin = SocketServer.ForkingMixIn
     else:
-        class _mixin:
+        class _mixin(object):
             pass
 
 def openlog(opt, default):