hgext/convert/git.py
changeset 4806 15a3cbfc6568
parent 4761 f52bfe566583
child 4809 c2d529f288a1
--- a/hgext/convert/git.py
+++ b/hgext/convert/git.py
@@ -9,6 +9,8 @@ class convert_git(converter_source):
         return os.popen('GIT_DIR=%s %s' % (self.path, s))
 
     def __init__(self, ui, path, rev=None):
+        super(convert_git, self).__init__(ui, path, rev=rev)
+
         if os.path.isdir(path + "/.git"):
             path += "/.git"
         if not os.path.exists(path + "/objects"):