diff hgext/convert/cvs.py @ 4806:15a3cbfc6568

convert: call superclass init from engine init functions
author Brendan Cully <brendan@kublai.com>
date Thu, 05 Jul 2007 12:00:04 -0700
parents 47091c8d028e
children c2d529f288a1
line wrap: on
line diff
--- a/hgext/convert/cvs.py
+++ b/hgext/convert/cvs.py
@@ -7,6 +7,8 @@ from common import NoRepo, commit, conve
 
 class convert_cvs(converter_source):
     def __init__(self, ui, path, rev=None):
+        super(convert_cvs, self).__init__(ui, path, rev=rev)
+
         self.path = path
         self.ui = ui
         self.rev = rev