diff contrib/hbisect.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 a7678cbd7c28
children ff339dd21976
line wrap: on
line diff
--- a/contrib/hbisect.py	Thu Nov 17 19:38:57 2005 +0100
+++ b/contrib/hbisect.py	Fri Nov 18 22:48:47 2005 -0800
@@ -26,7 +26,7 @@
             ui.warn("Repository is not clean, please commit or revert\n")
             sys.exit(1)
 
-class bisect:
+class bisect(object):
     """dichotomic search in the DAG of changesets"""
     def __init__(self, ui, repo):
         self.repo = repo