mercurial/commands.py
changeset 50984 727428c7e1fc
parent 50851 1144c69c7f58
child 50986 752c5a5b73c6
equal deleted inserted replaced
50980:8343947af6a7 50984:727428c7e1fc
    17     nullrev,
    17     nullrev,
    18     short,
    18     short,
    19     wdirrev,
    19     wdirrev,
    20 )
    20 )
    21 from . import (
    21 from . import (
       
    22     admin_commands as admin_commands_mod,
    22     archival,
    23     archival,
    23     bookmarks,
    24     bookmarks,
    24     bundle2,
    25     bundle2,
    25     bundlecaches,
    26     bundlecaches,
    26     changegroup,
    27     changegroup,
    73     urlutil,
    74     urlutil,
    74 )
    75 )
    75 
    76 
    76 table = {}
    77 table = {}
    77 table.update(debugcommandsmod.command._table)
    78 table.update(debugcommandsmod.command._table)
       
    79 table.update(admin_commands_mod.command._table)
    78 
    80 
    79 command = registrar.command(table)
    81 command = registrar.command(table)
    80 INTENT_READONLY = registrar.INTENT_READONLY
    82 INTENT_READONLY = registrar.INTENT_READONLY
    81 
    83 
    82 # common command options
    84 # common command options