hgext/mq.py
changeset 8778 c5f36402daad
parent 8761 0289f384e1e5
child 8795 51c29aec0b75
--- a/hgext/mq.py	Wed Jun 10 03:20:20 2009 +0200
+++ b/hgext/mq.py	Wed Jun 10 15:10:21 2009 +0200
@@ -42,7 +42,7 @@
 # They must be joinable with queue directory and result in the patch path.
 normname = util.normpath
 
-class statusentry:
+class statusentry(object):
     def __init__(self, rev, name=None):
         if not name:
             fields = rev.split(':', 1)
@@ -191,7 +191,7 @@
                 ci += 1
             del self.comments[ci]
 
-class queue:
+class queue(object):
     def __init__(self, ui, path, patchdir=None):
         self.basepath = path
         self.path = patchdir or os.path.join(path, "patches")