comparison hgext/convert/cvs.py @ 8598:5edb2a8e29ea

convert: deprecate external cvsps, to be removed in 1.4
author Patrick Mezard <pmezard@gmail.com>
date Sun, 24 May 2009 16:27:56 +0200
parents f55869abb5c3
children 3b76321aa0de 89fd11257d75
comparison
equal deleted inserted replaced
8597:dc1b9e22f288 8598:5edb2a8e29ea
23 23
24 checktool('cvs') 24 checktool('cvs')
25 self.cmd = ui.config('convert', 'cvsps', 'builtin') 25 self.cmd = ui.config('convert', 'cvsps', 'builtin')
26 cvspsexe = self.cmd.split(None, 1)[0] 26 cvspsexe = self.cmd.split(None, 1)[0]
27 self.builtin = cvspsexe == 'builtin' 27 self.builtin = cvspsexe == 'builtin'
28 if not self.builtin:
29 ui.warn(_('warning: support for external cvsps is deprecated and '
30 'will be removed in Mercurial 1.4\n'))
28 31
29 if not self.builtin: 32 if not self.builtin:
30 checktool(cvspsexe) 33 checktool(cvspsexe)
31 34
32 self.changeset = None 35 self.changeset = None