hgext/record.py
changeset 29841 d5883fd055c6
parent 29205 a0939666b836
child 30158 1baa0e2cfc37
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
    20     extensions,
    20     extensions,
    21 )
    21 )
    22 
    22 
    23 cmdtable = {}
    23 cmdtable = {}
    24 command = cmdutil.command(cmdtable)
    24 command = cmdutil.command(cmdtable)
    25 # Note for extension authors: ONLY specify testedwith = 'internal' for
    25 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    26 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    26 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    27 # be specifying the version(s) of Mercurial they are tested with, or
    27 # be specifying the version(s) of Mercurial they are tested with, or
    28 # leave the attribute unspecified.
    28 # leave the attribute unspecified.
    29 testedwith = 'internal'
    29 testedwith = 'ships-with-hg-core'
    30 
    30 
    31 
    31 
    32 @command("record",
    32 @command("record",
    33          # same options as commit + white space diff options
    33          # same options as commit + white space diff options
    34         [c for c in commands.table['^commit|ci'][1][:]
    34         [c for c in commands.table['^commit|ci'][1][:]