diff mercurial/dirstate.py @ 1559:59b3639df0a9

Convert all classes to new-style classes by deriving them from object.
author Eric Hopper <hopper@omnifarious.org>
date Fri, 18 Nov 2005 22:48:47 -0800
parents bf4e7ef08741
children 2f97af0b522c
line wrap: on
line diff
--- a/mercurial/dirstate.py	Thu Nov 17 19:38:57 2005 +0100
+++ b/mercurial/dirstate.py	Fri Nov 18 22:48:47 2005 -0800
@@ -13,7 +13,7 @@
 from demandload import *
 demandload(globals(), "time bisect stat util re errno")
 
-class dirstate:
+class dirstate(object):
     def __init__(self, opener, ui, root):
         self.opener = opener
         self.root = root