##// END OF EJS Templates
convert: kill dead code...
Julien Cristau -
r28817:e1d26630 default
parent child Browse files
Show More
@@ -53,11 +53,6 b' class convert_git(common.converter_sourc'
53 def gitpipe(self, *args, **kwargs):
53 def gitpipe(self, *args, **kwargs):
54 return self._gitcmd(self._run3, *args, **kwargs)
54 return self._gitcmd(self._run3, *args, **kwargs)
55
55
56 def gitread(self, s):
57 fh = self.gitopen(s)
58 data = fh.read()
59 return data, fh.close()
60
61 def __init__(self, ui, path, revs=None):
56 def __init__(self, ui, path, revs=None):
62 super(convert_git, self).__init__(ui, path, revs=revs)
57 super(convert_git, self).__init__(ui, path, revs=revs)
63 common.commandline.__init__(self, ui, 'git')
58 common.commandline.__init__(self, ui, 'git')
General Comments 0
You need to be logged in to leave comments. Login now