diff mercurial/localrepo.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 e793cbc8be00
children db10b7114de0 63799b01985c
line wrap: on
line diff
--- a/mercurial/localrepo.py	Thu Nov 17 19:38:57 2005 +0100
+++ b/mercurial/localrepo.py	Fri Nov 18 22:48:47 2005 -0800
@@ -12,7 +12,7 @@
 from demandload import *
 demandload(globals(), "re lock transaction tempfile stat mdiff errno")
 
-class localrepository:
+class localrepository(object):
     def __init__(self, ui, path=None, create=0):
         if not path:
             p = os.getcwd()