hgext/convert/__init__.py
changeset 45942 89a2afe31e82
parent 43077 687b865b95ad
child 46400 7525e77b5eac
equal deleted inserted replaced
45941:346af7687c6f 45942:89a2afe31e82
   534     ],
   534     ],
   535     _(b'hg debugcvsps [OPTION]... [PATH]...'),
   535     _(b'hg debugcvsps [OPTION]... [PATH]...'),
   536     norepo=True,
   536     norepo=True,
   537 )
   537 )
   538 def debugcvsps(ui, *args, **opts):
   538 def debugcvsps(ui, *args, **opts):
   539     '''create changeset information from CVS
   539     """create changeset information from CVS
   540 
   540 
   541     This command is intended as a debugging tool for the CVS to
   541     This command is intended as a debugging tool for the CVS to
   542     Mercurial converter, and can be used as a direct replacement for
   542     Mercurial converter, and can be used as a direct replacement for
   543     cvsps.
   543     cvsps.
   544 
   544 
   545     Hg debugcvsps reads the CVS rlog for current directory (or any
   545     Hg debugcvsps reads the CVS rlog for current directory (or any
   546     named directory) in the CVS repository, and converts the log to a
   546     named directory) in the CVS repository, and converts the log to a
   547     series of changesets based on matching commit log entries and
   547     series of changesets based on matching commit log entries and
   548     dates.'''
   548     dates."""
   549     return cvsps.debugcvsps(ui, *args, **opts)
   549     return cvsps.debugcvsps(ui, *args, **opts)
   550 
   550 
   551 
   551 
   552 def kwconverted(context, mapping, name):
   552 def kwconverted(context, mapping, name):
   553     ctx = context.resource(mapping, b'ctx')
   553     ctx = context.resource(mapping, b'ctx')