hgext/convert/cvs.py
changeset 4809 c2d529f288a1
parent 4806 15a3cbfc6568
child 5076 ef338e34a906
--- a/hgext/convert/cvs.py
+++ b/hgext/convert/cvs.py
@@ -9,9 +9,6 @@ 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
         cvs = os.path.join(path, "CVS")
         if not os.path.exists(cvs):
             raise NoRepo("couldn't open CVS repo %s" % path)