hgext/convert/__init__.py
changeset 7873 4a4c7f6a5912
parent 7823 11efa41037e2
child 7931 026bcd12a0ad
equal deleted inserted replaced
7872:f680a1bd679b 7873:4a4c7f6a5912
     6 # of the GNU General Public License, incorporated herein by reference.
     6 # of the GNU General Public License, incorporated herein by reference.
     7 '''converting foreign VCS repositories to Mercurial'''
     7 '''converting foreign VCS repositories to Mercurial'''
     8 
     8 
     9 import convcmd
     9 import convcmd
    10 import cvsps
    10 import cvsps
       
    11 import subversion
    11 from mercurial import commands
    12 from mercurial import commands
    12 from mercurial.i18n import _
    13 from mercurial.i18n import _
    13 
    14 
    14 # Commands definition was moved elsewhere to ease demandload job.
    15 # Commands definition was moved elsewhere to ease demandload job.
    15 
    16 
   197 
   198 
   198     """
   199     """
   199     return convcmd.convert(ui, src, dest, revmapfile, **opts)
   200     return convcmd.convert(ui, src, dest, revmapfile, **opts)
   200 
   201 
   201 def debugsvnlog(ui, **opts):
   202 def debugsvnlog(ui, **opts):
   202     return convcmd.debugsvnlog(ui, **opts)
   203     return subversion.debugsvnlog(ui, **opts)
   203 
   204 
   204 def debugcvsps(ui, *args, **opts):
   205 def debugcvsps(ui, *args, **opts):
   205     '''create changeset information from CVS
   206     '''create changeset information from CVS
   206 
   207 
   207     This command is intended as a debugging tool for the CVS to Mercurial
   208     This command is intended as a debugging tool for the CVS to Mercurial