mercurial/commands.py
changeset 50987 727428c7e1fc
parent 50854 1144c69c7f58
child 50989 752c5a5b73c6
--- a/mercurial/commands.py	Wed Aug 09 15:46:35 2023 +0200
+++ b/mercurial/commands.py	Wed Jan 25 15:33:39 2023 +0100
@@ -19,6 +19,7 @@
     wdirrev,
 )
 from . import (
+    admin_commands as admin_commands_mod,
     archival,
     bookmarks,
     bundle2,
@@ -75,6 +76,7 @@
 
 table = {}
 table.update(debugcommandsmod.command._table)
+table.update(admin_commands_mod.command._table)
 
 command = registrar.command(table)
 INTENT_READONLY = registrar.INTENT_READONLY